Skip to content

Commit

Permalink
Merge pull request #556 from MikeOrtiz/FixCompileSdkDeprecation
Browse files Browse the repository at this point in the history
Fix compileSdk deprecation
  • Loading branch information
hannesa2 committed Sep 15, 2023
2 parents 960f904 + f68143c commit 1a1a4f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,13 @@ plugins {
}

android {
compileSdkVersion defaultCompileSdkVersion

defaultConfig {
applicationId "com.ortiz.touchdemo"
versionCode getGitCommitCount()
versionName getTag()

minSdkVersion 21 // because of testLib Moka
compileSdk defaultCompileSdkVersion
targetSdkVersion defaultTargetSdkVersion

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
Expand Down
3 changes: 1 addition & 2 deletions touchview/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ plugins {
}

android {
compileSdkVersion defaultCompileSdkVersion

defaultConfig {
minSdkVersion 16
aarMetadata {
Expand All @@ -16,6 +14,7 @@ android {
enable = true
}

compileSdk defaultCompileSdkVersion
targetSdkVersion defaultTargetSdkVersion
buildConfigField "String", 'VERSION', "\"" + versionName + "\""
}
Expand Down

0 comments on commit 1a1a4f2

Please sign in to comment.