We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d30ed69 commit 37f51a1Copy full SHA for 37f51a1
2 files changed
.github/workflows/android.yml
@@ -51,7 +51,7 @@ jobs:
51
- name: Build
52
run: |
53
echo "${{ secrets.ANDROID_KEYSTORE }}" | base64 --decode > android/keystore
54
- export BUILD_NUMBER="${{ github.run_number }}"
+ export BUILD_NUMBER=$(( ${{ github.run_number }} + 2100002252 ))
55
export GOOGLE_MAPS_CLIENT_ID="${{ secrets.GOOGLE_MAPS_CLIENT_ID }}"
56
export GOOGLE_MAPS_SIGNING_SECRET="${{ secrets.GOOGLE_MAPS_SIGNING_SECRET }}"
57
./build.sh appbundle
android/app/build.gradle.kts
@@ -37,7 +37,7 @@ android {
37
// For more information, see: https://flutter.dev/to/review-gradle-config.
38
minSdk = flutter.minSdkVersion // Android 5.0+
39
targetSdk = 36 // Android 16
40
- versionCode = 2100002252
+ versionCode = flutter.versionCode
41
versionName = flutter.versionName
42
}
43
0 commit comments