Bump Android a 2.0.12-native (versionCode 33) per Play Store.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-08-20 16:50:20 +02:00
co-authored by Cursor
parent 4ca9f3af8b
commit c9b75065bc
2 changed files with 17 additions and 2 deletions
+2 -2
View File
@@ -24,8 +24,8 @@ android {
applicationId = "com.matchlivetv.match_live_tv"
minSdk = 24
targetSdk = 36
versionCode = 32
versionName = "2.0.11-native"
versionCode = 33
versionName = "2.0.12-native"
val apiBaseUrl = project.findProperty("API_BASE_URL") as String?
?: "https://www.matchlivetv.it"
+15
View File
@@ -0,0 +1,15 @@
#!/usr/bin/env bash
# Build AAB produzione firmato per Google Play Console.
set -euo pipefail
ROOT="$(cd "$(dirname "$0")/.." && pwd)"
ANDROID_DIR="$ROOT/native/android"
API_BASE_URL="${API_BASE_URL:-https://www.matchlivetv.it}"
cd "$ANDROID_DIR"
chmod +x gradlew
./gradlew clean bundleProdRelease -PAPI_BASE_URL="$API_BASE_URL"
AAB="$ANDROID_DIR/app/build/outputs/bundle/prodRelease/app-prod-release.aab"
echo "AAB: $AAB"
echo "API_BASE_URL=$API_BASE_URL"
ls -lh "$AAB"