Skip to content

Commit

Permalink
Merge branch 'CCIP-App:dev' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
25077667 committed Aug 23, 2022
2 parents 5859d97 + fcaf4b9 commit 1814bd1
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 12 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,5 @@ jobs:
- run: cat apk
- uses: softprops/action-gh-release@v1
with:
files: |
./app/build/outputs/apk/release/app-release-unsigned.apk
tag_name: "latest"
prerelease: true
files: ./app/build/outputs/apk/release/app-release-unsigned.apk
tag: latest
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ android {

dependencies {
final def markwon_version = '4.6.2'
final def lifecycle_version = '2.3.1'
final def lifecycle_version = '2.5.1'

implementation fileTree(dir: 'libs', include: ['*.jar'])
testImplementation 'junit:junit:4.13.2'
Expand Down
7 changes: 4 additions & 3 deletions app/src/main/res/layout/fragment_method_selection.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
Expand Down Expand Up @@ -46,7 +47,7 @@
android:layout_marginEnd="32dp"
android:alpha="0.54"
android:src="@drawable/ic_camera_alt_black_24dp"
android:tint="?attr/colorOnSurface" />
app:tint="?attr/colorOnSurface" />

<TextView
style="@style/TextAppearance.MaterialComponents.Subtitle2"
Expand All @@ -73,7 +74,7 @@
android:layout_marginEnd="32dp"
android:alpha="0.54"
android:src="@drawable/ic_photo_library_black_24dp"
android:tint="?attr/colorOnSurface" />
app:tint="?attr/colorOnSurface" />

<TextView
style="@style/TextAppearance.MaterialComponents.Subtitle2"
Expand All @@ -100,7 +101,7 @@
android:layout_marginEnd="32dp"
android:alpha="0.54"
android:src="@drawable/ic_confirmation_number_black_24dp"
android:tint="?attr/colorOnSurface" />
app:tint="?attr/colorOnSurface" />

<TextView
style="@style/TextAppearance.MaterialComponents.Subtitle2"
Expand Down
3 changes: 2 additions & 1 deletion app/src/main/res/layout/include_login.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/login_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
Expand All @@ -11,7 +12,7 @@
android:layout_height="150dp"
android:layout_centerHorizontal="true"
android:src="@drawable/qr_code"
android:tint="@android:color/darker_gray" />
app:tint="@android:color/darker_gray" />

<TextView
android:id="@+id/login_title"
Expand Down
5 changes: 3 additions & 2 deletions app/src/main/res/layout/item_menu_item.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?android:attr/selectableItemBackground"
Expand All @@ -15,7 +16,7 @@
android:layout_marginStart="16dp"
android:layout_marginEnd="32dp"
android:alpha="0.54"
android:tint="?attr/colorOnSurface" />
app:tint="?attr/colorOnSurface" />

<TextView
android:id="@+id/title"
Expand All @@ -34,5 +35,5 @@
android:layout_marginEnd="16dp"
android:alpha="0.54"
android:src="@drawable/ic_launch_black_24dp"
android:tint="?attr/colorOnSurface" />
app:tint="?attr/colorOnSurface" />
</LinearLayout>
3 changes: 2 additions & 1 deletion app/src/main/res/layout/nav_header.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
-->

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="192dp"
android:background="?attr/colorPrimaryDark"
Expand Down Expand Up @@ -57,7 +58,7 @@
android:layout_below="@id/user_title"
android:layout_alignParentEnd="true"
android:src="@drawable/ic_arrow_drop_down_black_24dp"
android:tint="@color/colorWhite" />
app:tint="@color/colorWhite" />

</RelativeLayout>

Expand Down

0 comments on commit 1814bd1

Please sign in to comment.