3 Commits
Author SHA1 Message Date
sora d72efea9bf Update .github/workflows/build.yml 2026-09-20 10:09:56 +02:00
sora 70e105e14e Fix crash seen on samsung galaxy 2026-09-20 10:08:57 +02:00
sora 3360acb411 Update .github/workflows/build.yml 2026-09-20 08:59:55 +02:00
3 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -93,10 +93,11 @@ jobs:
- name: Upload to Google Play - name: Upload to Google Play
uses: r0adkll/upload-google-play@v1 uses: r0adkll/upload-google-play@v1
if: startsWith(github.ref, 'refs/tags/')
with: with:
serviceAccountJsonPlainText: ${{ secrets.SERVICE_ACCOUNT_JSON }} serviceAccountJsonPlainText: ${{ secrets.SERVICE_ACCOUNT_JSON }}
packageName: net.helcel.beans packageName: net.helcel.beans
releaseFiles: app/build/outputs/bundle/signedRelease/app-signedRelease.aab releaseFiles: app/build/outputs/bundle/signedRelease/app-signedRelease.aab
tracks: ${{ startsWith(github.ref, 'refs/tags/') && 'production' || 'alpha' }} tracks: 'alpha' # ${{ startsWith(github.ref, 'refs/tags/') && 'production' || 'alpha' }}
status: completed status: completed
whatsNewDirectory: tmp/whatsnew whatsNewDirectory: tmp/whatsnew
+1
View File
@@ -36,6 +36,7 @@ android {
buildTypes { buildTypes {
debug { debug {
debuggable true debuggable true
applicationIdSuffix ".debug"
} }
release { release {
minifyEnabled true minifyEnabled true
-1
View File
@@ -5,7 +5,6 @@
android:allowBackup="true" android:allowBackup="true"
android:dataExtractionRules="@xml/data_extraction_rules" android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/backup_rules" android:fullBackupContent="@xml/backup_rules"
android:hardwareAccelerated="false"
android:icon="@mipmap/ic_launcher_round" android:icon="@mipmap/ic_launcher_round"
android:label="${APP_NAME}" android:label="${APP_NAME}"
android:supportsRtl="true"> android:supportsRtl="true">