Fix unfold menus soft-lock after tab is switched to another

This commit is contained in:
YTKAB0BP
2024-11-13 21:26:37 +03:00
parent 0b2ba24c7f
commit 596f0f6dda
4 changed files with 28 additions and 7 deletions
+6 -2
View File
@@ -12,7 +12,7 @@ android {
applicationId "ru.ytkab0bp.slicebeam"
minSdk 21
targetSdk 34
versionCode 2
versionCode 3
versionName "0.1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
@@ -34,8 +34,12 @@ android {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
buildConfigField "boolean", "IS_GOOGLE_PLAY", "true"
buildConfigField "boolean", "IS_GOOGLE_PLAY", "false"
buildConfigField "String", "COMMIT", "\"" + commit + "\""
ndk {
//noinspection ChromeOsAbiSupport
abiFilters "armeabi-v7a", "arm64-v8a"
}
}
debug {
buildConfigField "boolean", "IS_GOOGLE_PLAY", "false"