Skip to content

Commit

Permalink
Bump targetSdk and compileSdk to 29 (Android 10).
Browse files Browse the repository at this point in the history
  • Loading branch information
chimbori committed Sep 15, 2019
1 parent 3d42ae1 commit 312868e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ def versionPatch = 2
def versionBuild = 0 // bump for dogfood builds, public betas, etc.

android {
compileSdkVersion 28
compileSdkVersion 29

defaultConfig {
applicationId "com.heinrichreimersoftware.materialintro.demo"
minSdkVersion 15
targetSdkVersion 28
targetSdkVersion 29
versionCode versionMajor * 10000 + versionMinor * 1000 + versionPatch * 100 + versionBuild
versionName "${versionMajor}.${versionMinor}" + (versionPatch == 0 ? "" : ".${versionPatch}")
}
Expand Down
4 changes: 2 additions & 2 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ def versionPatch = 2
def versionBuild = 0 // bump for dogfood builds, public betas, etc.

android {
compileSdkVersion 28
compileSdkVersion 29

defaultConfig {
minSdkVersion 15
targetSdkVersion 28
targetSdkVersion 29
versionCode versionMajor * 10000 + versionMinor * 1000 + versionPatch * 100 + versionBuild
versionName "${versionMajor}.${versionMinor}" + (versionPatch == 0 ? "" : ".${versionPatch}")
}
Expand Down

0 comments on commit 312868e

Please sign in to comment.