Skip to content

Commit 0c516f8

Browse files
author
kirill
committed
Updated target versions
1 parent 4e69592 commit 0c516f8

File tree

4 files changed

+16
-15
lines changed

4 files changed

+16
-15
lines changed

app/build.gradle

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ repositories {
55
}
66
}
77
android {
8-
compileSdkVersion 23
9-
buildToolsVersion "23.0.2"
8+
compileSdkVersion 28
9+
buildToolsVersion "28.0.3"
1010

1111
defaultConfig {
1212
minSdkVersion 15
13-
targetSdkVersion 23
13+
targetSdkVersion 28
1414
versionCode 1
1515
versionName "1.0"
1616
}
@@ -23,8 +23,8 @@ android {
2323
}
2424

2525
dependencies {
26-
compile project(':library')
27-
compile fileTree(dir: 'libs', include: ['*.jar'])
28-
compile 'com.android.support:appcompat-v7:23.1.1'
29-
compile 'com.github.ozodrukh:CircularReveal:1.0.4'
26+
implementation project(':library')
27+
implementation fileTree(dir: 'libs', include: ['*.jar'])
28+
implementation 'com.android.support:appcompat-v7:28.0.0'
29+
implementation 'com.github.ozodrukh:CircularReveal:1.0.4'
3030
}

build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@
33
buildscript {
44
repositories {
55
jcenter()
6+
google()
67
}
78
dependencies {
8-
classpath 'com.android.tools.build:gradle:2.2.3'
9+
classpath 'com.android.tools.build:gradle:3.3.0'
910
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
1011

1112
// NOTE: Do not place your application dependencies here; they belong
@@ -21,6 +22,7 @@ allprojects {
2122
group = GROUP
2223
repositories {
2324
jcenter()
25+
google()
2426
}
2527
}
2628
apply plugin: 'android-reporting'
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Thu Jan 05 16:16:16 EET 2017
1+
#Thu Jan 31 15:40:02 EET 2019
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-2.14.1-bin.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.1-all.zip

library/build.gradle

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
apply plugin: 'com.android.library'
22
apply plugin: 'com.github.dcendents.android-maven'
3-
group='com.yalantis:sidemenu'
43

54
android {
6-
compileSdkVersion 23
7-
buildToolsVersion "23.0.2"
5+
compileSdkVersion 28
6+
buildToolsVersion "28.0.3"
87

98
defaultConfig {
109
minSdkVersion 15
11-
targetSdkVersion 23
10+
targetSdkVersion 28
1211
versionCode 1
1312
versionName "1.0"
1413
}
@@ -20,7 +19,7 @@ android {
2019
}
2120
}
2221
dependencies {
23-
compile 'com.android.support:appcompat-v7:23.1.1'
22+
implementation 'com.android.support:appcompat-v7:28.0.0'
2423
}
2524

2625
task androidJavadocs(type: Javadoc) {

0 commit comments

Comments
 (0)