diff --git a/.github/workflows/sign.yml b/.github/workflows/sign.yml index eaedf47..a06d89e 100644 --- a/.github/workflows/sign.yml +++ b/.github/workflows/sign.yml @@ -36,11 +36,14 @@ jobs: echo "storePassword=$MEALIENT_KEY_STORE_PASSWORD" >> keystore.properties echo "keyAlias=$MEALIENT_KEY_ALIAS" >> keystore.properties echo "keyPassword=$MEALIENT_KEY_PASSWORD" >> keystore.properties - ./gradlew build coverageReport sonar uploadToAppSweepRelease --no-configuration-cache + ./gradlew build bundle coverageReport sonar uploadToAppSweepRelease --no-configuration-cache cp app/build/outputs/apk/release/*.apk mealient-release.apk + cp app/build/outputs/bundle/release/*.aab mealient-release.aab - - name: Upload signed APK + - name: Upload release build uses: actions/upload-artifact@v3 with: - name: Signed APK - path: mealient-release.apk \ No newline at end of file + name: Release build + path: | + mealient-release.apk + mealient-release.aab diff --git a/app/build.gradle.kts b/app/build.gradle.kts index a78afd6..9d5d520 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -17,8 +17,8 @@ plugins { android { defaultConfig { applicationId = "gq.kirmanak.mealient" - versionCode = 18 - versionName = "0.3.3" + versionCode = 19 + versionName = "0.3.4" } signingConfigs { diff --git a/app/src/main/res/menu/main_toolbar.xml b/app/src/main/res/menu/main_toolbar.xml deleted file mode 100644 index 1f07637..0000000 --- a/app/src/main/res/menu/main_toolbar.xml +++ /dev/null @@ -1,11 +0,0 @@ - -
\ No newline at end of file