Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ val releaseKeystorePath = providers.environmentVariable("MEGAPROXY_KEYSTORE_PATH
val releaseKeystorePassword = providers.environmentVariable("MEGAPROXY_KEYSTORE_PASSWORD").orNull
val releaseKeyAlias = providers.environmentVariable("MEGAPROXY_KEY_ALIAS").orNull
val releaseKeyPassword = providers.environmentVariable("MEGAPROXY_KEY_PASSWORD").orNull
val versionCodeBase = 13
val versionCodeBase = 14
val versionVariant = providers.gradleProperty("megaproxyVersionVariant")
.orElse("universal")
.get()
Expand Down Expand Up @@ -46,7 +46,7 @@ android {
// universal code below the ABI variants lets app stores prefer the
// smaller compatible APK when both are available.
versionCode = versionCodeBase * 1000 + versionVariantCode
versionName = "0.1.0"
versionName = "0.1.1"
buildConfigField("String", "GIT_COMMIT_HASH", "\"$gitCommitHash\"")
if (versionVariant != "universal") {
// Keep every ABI-specific APK genuinely single-ABI. Without this,
Expand Down
1 change: 1 addition & 0 deletions fastlane/metadata/android/en-US/changelogs/14000.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Maintenance release: automated Google Play uploads now include the App Bundle and native debug symbols.
1 change: 1 addition & 0 deletions fastlane/metadata/android/ru-RU/changelogs/14000.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Техническое обновление: автоматическая загрузка релизов в Google Play включает App Bundle и отладочные символы нативного кода.
Loading