Bump Android a 2.0.12-native (versionCode 33) per Play Store.
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -24,8 +24,8 @@ android {
|
|||||||
applicationId = "com.matchlivetv.match_live_tv"
|
applicationId = "com.matchlivetv.match_live_tv"
|
||||||
minSdk = 24
|
minSdk = 24
|
||||||
targetSdk = 36
|
targetSdk = 36
|
||||||
versionCode = 32
|
versionCode = 33
|
||||||
versionName = "2.0.11-native"
|
versionName = "2.0.12-native"
|
||||||
|
|
||||||
val apiBaseUrl = project.findProperty("API_BASE_URL") as String?
|
val apiBaseUrl = project.findProperty("API_BASE_URL") as String?
|
||||||
?: "https://www.matchlivetv.it"
|
?: "https://www.matchlivetv.it"
|
||||||
|
|||||||
Executable
+15
@@ -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"
|
||||||
Reference in New Issue
Block a user