Skip to content

Commit 493d25a

Browse files
committed
Updated versions of support lib, gradle etc
1 parent e0acf46 commit 493d25a

File tree

4 files changed

+21
-19
lines changed

4 files changed

+21
-19
lines changed

app/build.gradle

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

33
android {
4-
compileSdkVersion 24
5-
buildToolsVersion "24.0.2"
4+
compileSdkVersion 27
5+
buildToolsVersion "27.0.3"
66

77
defaultConfig {
88
applicationId "za.co.riggaroo.helptut.helptutorialexample"
9-
minSdkVersion 11
10-
targetSdkVersion 24
9+
minSdkVersion 14
10+
targetSdkVersion 27
1111
versionCode 1
1212
versionName "1.0"
1313
}
@@ -23,5 +23,5 @@ dependencies {
2323
compile fileTree(dir: 'libs', include: ['*.jar'])
2424
testCompile 'junit:junit:4.12'
2525
compile project(':materialhelptutorial')
26-
compile 'com.android.support:appcompat-v7:24.2.1'
26+
compile 'com.android.support:appcompat-v7:27.0.2'
2727
}

build.gradle

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@
33
buildscript {
44
repositories {
55
jcenter()
6+
google()
67
}
78
dependencies {
8-
classpath 'com.android.tools.build:gradle:2.2.1'
9-
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7'
9+
classpath 'com.android.tools.build:gradle:3.0.1'
10+
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
1011
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
1112
// NOTE: Do not place your application dependencies here; they belong
1213
// in the individual module build.gradle files
@@ -16,6 +17,7 @@ buildscript {
1617
allprojects {
1718
repositories {
1819
jcenter()
20+
google()
1921
}
2022
}
2123

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Sun Oct 09 10:46:48 SAST 2016
1+
#Wed Jan 03 12:39:22 SAST 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-2.14.1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip

materialhelptutorial/build.gradle

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,20 @@ apply plugin: 'com.android.library'
22
apply plugin: 'com.github.dcendents.android-maven'
33
apply plugin: 'com.jfrog.bintray'
44

5-
version = "1.4.0"
5+
version = "1.5.0"
66
group = "za.co.riggaroo"
77

8-
def siteUrl = 'https://github.com/spongebobrf/MaterialIntroTutorial'
9-
def gitUrl = 'https://github.com/spongebobrf/MaterialIntroTutorial.git'
8+
def siteUrl = 'https://github.com/riggaroo/MaterialIntroTutorial'
9+
def gitUrl = 'https://github.com/riggaroo/MaterialIntroTutorial.git'
1010

1111
android {
12-
compileSdkVersion 24
13-
buildToolsVersion "24.0.2"
12+
compileSdkVersion 27
13+
buildToolsVersion "27.0.3"
1414

1515
defaultConfig {
16-
minSdkVersion 11
17-
targetSdkVersion 24
18-
versionCode 9
16+
minSdkVersion 14
17+
targetSdkVersion 27
18+
versionCode 10
1919
versionName version
2020
}
2121
buildTypes {
@@ -27,14 +27,14 @@ android {
2727
}
2828

2929
dependencies {
30-
final SUPPORT_LIBRARY_VERSION = '24.2.1'
30+
final SUPPORT_LIBRARY_VERSION = '27.0.2'
3131

3232
compile fileTree(dir: 'libs', include: ['*.jar'])
3333
testCompile 'junit:junit:4.12'
3434
compile "com.android.support:appcompat-v7:$SUPPORT_LIBRARY_VERSION"
3535
compile "com.android.support:percent:$SUPPORT_LIBRARY_VERSION"
3636
compile "com.android.support:support-annotations:$SUPPORT_LIBRARY_VERSION"
37-
compile 'com.github.bumptech.glide:glide:3.7.0'
37+
compile 'com.github.bumptech.glide:glide:3.8.0'
3838
}
3939

4040

0 commit comments

Comments
 (0)