Skip to content

Commit

Permalink
Set minSDK of play version to 19 as it is a requirement of billingclient
Browse files Browse the repository at this point in the history
Signed-off-by: sunilpaulmathew <sunil.kde@gmail.com>
  • Loading branch information
sunilpaulmathew committed Dec 22, 2023
1 parent 1cf8629 commit 7273820
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion app/build.gradle
Expand Up @@ -19,7 +19,6 @@ android {

defaultConfig {
applicationId "com.sunilpaulmathew.snotz"
minSdk 17
targetSdk 34
versionCode 31
versionName "v0.31"
Expand All @@ -40,12 +39,18 @@ android {
}
}

buildFeatures {
buildConfig = true
}

flavorDimensions.add("release")
productFlavors {
play {
minSdk 19
dimension "release"
}
fdroid {
minSdk 17
dimension "release"
}
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Expand Up @@ -18,6 +18,6 @@ android.useAndroidX=true
# Automatically convert third-party libraries to use AndroidX
android.enableJetifier=true
org.gradle.unsafe.configuration-cache=true
android.defaults.buildfeatures.buildconfig=true
android.defaults.buildfeatures.buildconfig=false
android.nonTransitiveRClass=false
android.nonFinalResIds=false

0 comments on commit 7273820

Please sign in to comment.