Skip to content
This repository has been archived by the owner on Nov 5, 2024. It is now read-only.

Commit

Permalink
WIP: Fix Android linkage problems & the new workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ILIYANGERMANOV committed Jan 27, 2024
1 parent f51787e commit db3a991
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/integration_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
pull_request:

jobs:
test:
integration_test:
runs-on: ubuntu-latest
steps:
- name: Checkout GIT
Expand All @@ -30,7 +30,7 @@ jobs:
${{ runner.os }}-gradle-
- name: Build Android code
run: ./gradlew assembleDebug assembleAndroidTest --stacktrace
run: ./gradlew assembleDebug assembleAndroidTest

- name: Set up Android SDK
uses: android-actions/setup-android@v2
Expand All @@ -39,7 +39,7 @@ jobs:
uses: reactivecircus/android-emulator-runner@v2
with:
api-level: 29
script: ./gradlew connectedCheck --stacktrace
script: ./gradlew connectedDebugAndroidTest
target: default
arch: x86_64
profile: Nexus 6
Expand Down
1 change: 1 addition & 0 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@
android:name="android.appwidget.provider"
android:resource="@xml/wallet_balance_widget_info" />
</receiver>

<service
android:name=".PaymentTileService"
android:exported="true"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<resources>

<!-- Base application theme. -->

<style name="AppTheme" parent="Theme.MaterialComponents.NoActionBar">
<item name="android:colorPrimary">@color/ivy</item>
<item name="android:colorPrimaryDark">@color/ivy</item>
Expand Down

0 comments on commit db3a991

Please sign in to comment.