diff --git a/app/build.gradle.kts b/app/build.gradle.kts index ff7d42d..0e26565 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -15,8 +15,8 @@ android { applicationId = "me.lecaro.breakout" minSdk = 21 targetSdk = 34 - versionCode = 28994243 - versionName = "28994243" + versionCode = 28994244 + versionName = "28994244" testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" vectorDrawables { useSupportLibrary = true diff --git a/app/src/main/assets/index.html b/app/src/main/assets/index.html index e9d08f8..f8068a2 100644 --- a/app/src/main/assets/index.html +++ b/app/src/main/assets/index.html @@ -8,14 +8,14 @@ /> Breakout 𝟕𝟏 - + - - + + diff --git a/deploy.sh b/deploy.sh index f59a06f..9ce65fd 100755 --- a/deploy.sh +++ b/deploy.sh @@ -5,6 +5,7 @@ set -x # Replace the version code and name in gradle for fdroid and play store versionCode=$(($(date +%s) / 60)) +# On macOS you should use -i '' not just -i, but i'm on linux sed -i -e "s/^[[:space:]]*versionCode = .*/ versionCode = $versionCode/" \ -e "s/^[[:space:]]*versionName = .*/ versionName = \"$versionCode\"/" \ ./app/build.gradle.kts