diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2023-05-08 13:08:09 +0200 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2023-05-08 13:08:09 +0200 |
commit | 33a8a51962fd53c0671128607f8bbbe9fac357ac (patch) | |
tree | 7a9528f92cdb448a1a56dcca53270f27de8a6bf3 /ui/build.gradle.kts | |
parent | 40eaa54cf025d3b4d4f75ab907602e8ecbfe05ad (diff) |
gradle: restore play runtime detection
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'ui/build.gradle.kts')
-rw-r--r-- | ui/build.gradle.kts | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/ui/build.gradle.kts b/ui/build.gradle.kts index bc6f19d0..d5ce5997 100644 --- a/ui/build.gradle.kts +++ b/ui/build.gradle.kts @@ -26,7 +26,6 @@ android { versionCode = providers.gradleProperty("wireguardVersionCode").get().toInt() versionName = providers.gradleProperty("wireguardVersionName").get() buildConfigField("int", "MIN_SDK_VERSION", minSdk.toString()) - buildConfigField("boolean", "IS_GOOGLE_PLAY", false.toString()) } compileOptions { sourceCompatibility = JavaVersion.VERSION_17 @@ -49,11 +48,6 @@ android { applicationIdSuffix = ".debug" versionNameSuffix = "-debug" } - create("googleplay") { - initWith(getByName("release")) - matchingFallbacks += "release" - buildConfigField("boolean", "IS_GOOGLE_PLAY", true.toString()) - } } lint { disable += "LongLogTag" |