5 Commits
4 changed files with 4 additions and 3 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">
+1 -1
View File
@@ -1,6 +1,6 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules. // Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins { plugins {
id 'com.android.application' version '9.4.1' apply false id 'com.android.application' version '9.4.1' apply false
id 'com.android.library' version '9.3.2' apply false id 'com.android.library' version '9.4.1' apply false
id 'org.jetbrains.kotlin.android' version '2.4.20' apply false id 'org.jetbrains.kotlin.android' version '2.4.20' apply false
} }