From 2c99320278c1132792fd62e91120110d6b5719a2 Mon Sep 17 00:00:00 2001 From: Roman Tsisyk Date: Sat, 2 Jan 2021 15:42:03 +0000 Subject: [PATCH] [android] Don't use OBB for Google Play https://developer.android.com/google/play/expansion-files: > If you'd like to avoid using expansion files and your app's compressed > download size is larger than 100 MB, you should instead upload your app > using Android App Bundles which allows for up to a 150 MB compressed > download size. > > Important: In the second half of 2021, new apps will be required to > publish with the Android App Bundle on Google Play. Signed-off-by: Roman Tsisyk --- android/build.gradle | 1 + android/gradle.properties | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/android/build.gradle b/android/build.gradle index 4bf7f145b1..4c490ac460 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -252,6 +252,7 @@ android { dimension "default" versionName = android.defaultConfig.versionName + '-Google' buildConfigField 'String', 'SUPPORT_MAIL', '"googleplay@omaps.app"' + android.sourceSets.google.assets.srcDirs = ['flavors/mwm-ttf-assets'] } samsung { diff --git a/android/gradle.properties b/android/gradle.properties index 4a131044d8..a5b0451b3a 100644 --- a/android/gradle.properties +++ b/android/gradle.properties @@ -2,8 +2,8 @@ propMinSdkVersion=21 propTargetSdkVersion=29 propCompileSdkVersion=29 propBuildToolsVersion=27.0.3 -propVersionCode=1046 -propVersionName=10.4.6 +propVersionCode=1047 +propVersionName=10.4.7 propDebugNdkFlags=V=1 NDK_DEBUG=1 DEBUG=1 propReleaseNdkFlags=V=1 NDK_DEBUG=0 PRODUCTION=1 propMultiDexVersion=2.0.1