Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
shocknet-justin committed Sep 14, 2024
1 parent 7642844 commit d2a56b2
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/android-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -191,8 +191,8 @@ jobs:
echo "VITE_ANDROID_APPLICATION_ID: ${{ env.VITE_ANDROID_APPLICATION_ID }}"
echo "Gradle Properties:"
cat android/gradle.properties
echo "Local Properties:"
cat android/local.properties
echo "Build Gradle Contents:"
cat android/app/build.gradle
- name: Build with Gradle
run: |
Expand All @@ -202,3 +202,10 @@ jobs:
- name: Check Final AndroidManifest.xml
run: |
unzip -p android/app/build/outputs/apk/release/app-release.apk AndroidManifest.xml | $ANDROID_SDK_ROOT/build-tools/33.0.0/aapt dump xmltree -
- name: Check APK contents
run: |
echo "APK contents:"
unzip -l android/app/build/outputs/apk/release/app-release.apk
echo "AndroidManifest.xml contents:"
unzip -p android/app/build/outputs/apk/release/app-release.apk AndroidManifest.xml | $ANDROID_SDK_ROOT/build-tools/33.0.0/aapt dump xmltree -

0 comments on commit d2a56b2

Please sign in to comment.