Skip to content

Commit 4394d92

Browse files
author
Tomer
committed
update gradle plugin to 3.2.1
update target/compile sdk version to 28 update support libraries to version 28.0.0
1 parent 9efa329 commit 4394d92

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

app/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 27
4+
compileSdkVersion 28
55

66
defaultConfig {
77
applicationId "com.tomergoldst.tooltipsdemo"
88
minSdkVersion 14
9-
targetSdkVersion 27
9+
targetSdkVersion 28
1010
versionCode 1
1111
versionName "1.0"
1212
}
@@ -21,7 +21,7 @@ android {
2121
dependencies {
2222
implementation fileTree(dir: 'libs', include: ['*.jar'])
2323
testImplementation 'junit:junit:4.12'
24-
implementation 'com.android.support:appcompat-v7:27.1.1'
25-
implementation 'com.android.support:design:27.1.1'
24+
implementation 'com.android.support:appcompat-v7:28.0.0'
25+
implementation 'com.android.support:design:28.0.0'
2626
implementation project(path: ':tooltips')
2727
}

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
buildscript {
44
repositories {
5-
jcenter()
65
google()
6+
jcenter()
77
}
88
dependencies {
9-
classpath 'com.android.tools.build:gradle:3.1.3'
9+
classpath 'com.android.tools.build:gradle:3.2.1'
1010
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7'
1111
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'
1212
// NOTE: Do not place your application dependencies here; they belong
@@ -16,8 +16,8 @@ buildscript {
1616

1717
allprojects {
1818
repositories {
19-
jcenter()
2019
google()
20+
jcenter()
2121
}
2222
}
2323

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Tue Apr 03 11:46:50 IDT 2018
1+
#Mon Oct 29 14:06:24 IST 2018
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-all.zip

tooltips/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ ext {
2525
}
2626

2727
android {
28-
compileSdkVersion 27
28+
compileSdkVersion 28
2929

3030
defaultConfig {
3131
minSdkVersion 14
32-
targetSdkVersion 27
32+
targetSdkVersion 28
3333
versionCode 11
3434
versionName "1.0.10"
3535
}
@@ -44,7 +44,7 @@ android {
4444
dependencies {
4545
implementation fileTree(dir: 'libs', include: ['*.jar'])
4646
testImplementation 'junit:junit:4.12'
47-
implementation 'com.android.support:appcompat-v7:27.1.1'
47+
implementation 'com.android.support:appcompat-v7:28.0.0'
4848
}
4949

5050
apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/installv1.gradle'

0 commit comments

Comments
 (0)