Skip to content
This repository has been archived by the owner on Jun 19, 2021. It is now read-only.

Commit

Permalink
Updated versions of support lib, gradle etc
Browse files Browse the repository at this point in the history
  • Loading branch information
spongebobrf committed Jan 3, 2018
1 parent e0acf46 commit 493d25a
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 19 deletions.
10 changes: 5 additions & 5 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 24
buildToolsVersion "24.0.2"
compileSdkVersion 27
buildToolsVersion "27.0.3"

defaultConfig {
applicationId "za.co.riggaroo.helptut.helptutorialexample"
minSdkVersion 11
targetSdkVersion 24
minSdkVersion 14
targetSdkVersion 27
versionCode 1
versionName "1.0"
}
Expand All @@ -23,5 +23,5 @@ dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile project(':materialhelptutorial')
compile 'com.android.support:appcompat-v7:24.2.1'
compile 'com.android.support:appcompat-v7:27.0.2'
}
6 changes: 4 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@
buildscript {
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.1'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7'
classpath 'com.android.tools.build:gradle:3.0.1'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand All @@ -16,6 +17,7 @@ buildscript {
allprojects {
repositories {
jcenter()
google()
}
}

Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Sun Oct 09 10:46:48 SAST 2016
#Wed Jan 03 12:39:22 SAST 2018
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip
20 changes: 10 additions & 10 deletions materialhelptutorial/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@ apply plugin: 'com.android.library'
apply plugin: 'com.github.dcendents.android-maven'
apply plugin: 'com.jfrog.bintray'

version = "1.4.0"
version = "1.5.0"
group = "za.co.riggaroo"

def siteUrl = 'https://github.com/spongebobrf/MaterialIntroTutorial'
def gitUrl = 'https://github.com/spongebobrf/MaterialIntroTutorial.git'
def siteUrl = 'https://github.com/riggaroo/MaterialIntroTutorial'
def gitUrl = 'https://github.com/riggaroo/MaterialIntroTutorial.git'

android {
compileSdkVersion 24
buildToolsVersion "24.0.2"
compileSdkVersion 27
buildToolsVersion "27.0.3"

defaultConfig {
minSdkVersion 11
targetSdkVersion 24
versionCode 9
minSdkVersion 14
targetSdkVersion 27
versionCode 10
versionName version
}
buildTypes {
Expand All @@ -27,14 +27,14 @@ android {
}

dependencies {
final SUPPORT_LIBRARY_VERSION = '24.2.1'
final SUPPORT_LIBRARY_VERSION = '27.0.2'

compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile "com.android.support:appcompat-v7:$SUPPORT_LIBRARY_VERSION"
compile "com.android.support:percent:$SUPPORT_LIBRARY_VERSION"
compile "com.android.support:support-annotations:$SUPPORT_LIBRARY_VERSION"
compile 'com.github.bumptech.glide:glide:3.7.0'
compile 'com.github.bumptech.glide:glide:3.8.0'
}


Expand Down

0 comments on commit 493d25a

Please sign in to comment.