-
-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #158 from TeamAmaze/feature-147
147: change video player and image viewer backgrounds to dark; fix po…
- Loading branch information
Showing
9 changed files
with
91 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
name: Android Build CI | ||
|
||
on: | ||
push: | ||
branches: | ||
- '*' | ||
- '!master' | ||
- '!release/*' | ||
concurrency: | ||
group: build-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
check_spotless: | ||
name: Check spotless | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up JDK 11 | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: "temurin" | ||
java-version: 11 | ||
- name: Check formatting using spotless | ||
uses: gradle/[email protected] | ||
with: | ||
arguments: spotlessCheck | ||
build: | ||
name: Build debug | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- name: Set up JDK 11 | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: "temurin" | ||
java-version: 11 | ||
- name: Build with Gradle | ||
uses: gradle/[email protected] | ||
with: | ||
arguments: assembledebug --stacktrace | ||
env: | ||
TZ: UTC |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,7 +40,7 @@ jobs: | |
- name: Build with Gradle | ||
uses: gradle/[email protected] | ||
with: | ||
arguments: assembledebug | ||
arguments: assembledebug --stacktrace | ||
env: | ||
TZ: UTC | ||
- name: Publish on Telegram | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<item> | ||
<shape | ||
android:shape="rectangle"> | ||
<corners | ||
android:topLeftRadius="@dimen/material_generic" | ||
android:topRightRadius="@dimen/material_generic" | ||
android:bottomLeftRadius="@dimen/material_generic" | ||
android:bottomRightRadius="@dimen/material_generic" | ||
/> | ||
<solid android:color="@color/navy_blue_alt" /> | ||
</shape> | ||
</item> | ||
<item android:drawable="@drawable/ripple_curved_16_trans_70" /> | ||
</layer-list> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<ripple xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:tools="http://schemas.android.com/tools" | ||
android:color="@color/highlight_yellow_70" | ||
tools:targetApi="lollipop"> | ||
<item android:id="@android:id/mask"> | ||
<shape android:shape="rectangle"> | ||
<solid android:color="@color/highlight_yellow_70" /> | ||
<!-- <corners android:radius="@dimen/round_corner" />--> | ||
<corners | ||
android:topLeftRadius="@dimen/material_generic" | ||
android:topRightRadius="@dimen/material_generic" | ||
android:bottomLeftRadius="@dimen/material_generic" | ||
android:bottomRightRadius="@dimen/material_generic" | ||
/> | ||
</shape> | ||
</item> | ||
</ripple> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters