Skip to content

Commit

Permalink
compilesdkversion, targetsdk, minsdk generalized
Browse files Browse the repository at this point in the history
  • Loading branch information
har2008preet committed Sep 9, 2022
1 parent 8f4b53a commit 3aa2e34
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Toast/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ plugins {
}

android {
compileSdk 31
compileSdk project.hasProperty('compileSdkVersion') ? rootProject.ext.compileSdkVersion : 30

defaultConfig {
minSdk 16
targetSdk 31
minSdk project.hasProperty('minSdkVersion') ? rootProject.ext.minSdkVersion : 16
targetSdk project.hasProperty('targetSdkVersion') ? rootProject.ext.targetSdkVersion : 30

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles "consumer-rules.pro"
Expand Down

0 comments on commit 3aa2e34

Please sign in to comment.