Skip to content

Commit b254831

Browse files
committed
Add debugging step to list bin directory contents after APK build and change release artifact format to APK
1 parent 18abf48 commit b254831

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/android.build.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,12 @@ jobs:
7777
7878
buildozer -v android release
7979
80+
# --- step for debugging ---
81+
- name: List bin directory contents (after build)
82+
if: always() # Run even if previous steps fail, to aid debugging
83+
run: |
84+
echo "Listing contents of ./bin directory:"
85+
ls -lR ./bin || echo "Bin directory not found or empty."
8086
8187
- name: Upload APK artifact
8288
uses: actions/upload-artifact@v4

buildozer.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ android.archs = arm64-v8a, armeabi-v7a
109109
android.allow_backup = True
110110
111111
# (str) The format used to package the app for release mode (aab or apk). aab is recommended for Play Store.
112-
android.release_artifact = aab
112+
android.release_artifact = apk
113113
114114
# (str) The format used to package the app for debug mode (apk).
115115
# android.debug_artifact = apk

0 commit comments

Comments
 (0)