Skip to content

Commit

Permalink
Everyone likes Pie (Update to android 9, API 28)
Browse files Browse the repository at this point in the history
  • Loading branch information
eltos committed Aug 20, 2018
1 parent de627b2 commit 5ceba40
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 16 deletions.
1 change: 0 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ buildscript {
gradlePluginVersion = '3.0.1' // <X>.<Y>.<Z>
lintVersion = '26.0.1' // <X+23>.<Y>.<Z>

buildToolsVersion = '27.0.3'
}
repositories {
google()
Expand Down
16 changes: 8 additions & 8 deletions simpledialogfragment/build.gradle
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
apply plugin: 'com.android.library'

android {
compileSdkVersion 27
buildToolsVersion '27.0.3'
compileSdkVersion 28
buildToolsVersion '28.0.2'

defaultConfig {
minSdkVersion 14
targetSdkVersion 27
targetSdkVersion 28
versionCode 300
versionName "3.0"
versionName '3.0'
}
buildTypes {
release {
Expand All @@ -22,10 +22,10 @@ android {
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:27.1.1'
compile 'com.android.support:design:27.1.1'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.alimuzaffar.lib:pinentryedittext:1.3.3'
implementation 'com.android.support:appcompat-v7:28.0.0-rc01'
implementation 'com.android.support:design:28.0.0-rc01'
implementation 'com.android.support.constraint:constraint-layout:1.1.2'
implementation 'com.alimuzaffar.lib:pinentryedittext:1.3.3'
lintChecks project(':lintchecks')
}

Expand Down
14 changes: 7 additions & 7 deletions testApp/build.gradle
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 27
buildToolsVersion '27.0.3'
compileSdkVersion 28
buildToolsVersion '28.0.2'

defaultConfig {
applicationId "eltos.simpledialogfragments.test"
applicationId 'eltos.simpledialogfragments.test'
minSdkVersion 14
targetSdkVersion 25
targetSdkVersion 28
versionCode 300
versionName "3.0"
versionName '3.0'
}
buildTypes {
release {
Expand All @@ -22,7 +22,7 @@ android {
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:27.1.1'
compile 'com.google.zxing:core:3.2.0'
compile 'com.android.support:appcompat-v7:28.0.0-rc01'
compile 'com.google.zxing:core:3.3.3'
compile project(path: ':simpledialogfragment')
}

0 comments on commit 5ceba40

Please sign in to comment.