File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ ### v2.0.0 - 11/05/2017
2+ - Update Gradle Wrapper to 4.2.1
3+ - Update AGP to 3.0.0
4+ - Update Build Tools to 27.0.0
5+ - Update Support Library to 27.0.0
16### v1.0.0 - 05/30/2017
27 - minSdk lowered to API 16 (by default API 16 will have RTL support disabled)
38##
Original file line number Diff line number Diff line change @@ -27,3 +27,7 @@ dependencies {
2727
2828 compile project(' :library' )
2929}
30+
31+ configurations. all {
32+ resolutionStrategy. force " com.android.support:appcompat-v7:${ versions.supportLib} "
33+ }
Original file line number Diff line number Diff line change 33buildscript {
44 repositories {
55 jcenter()
6+ google()
67 }
78 dependencies {
8- classpath ' com.android.tools.build:gradle:2.3.2 '
9- classpath ' com.novoda:bintray-release:0.5 .0'
9+ classpath ' com.android.tools.build:gradle:3.0.0 '
10+ classpath ' com.novoda:bintray-release:0.7 .0'
1011
1112 // NOTE: Do not place your application dependencies here; they belong
1213 // in the individual module build.gradle files
@@ -15,18 +16,19 @@ buildscript {
1516 // To avoid manually setting the same values in all Android modules, set the value on the root
1617 // project and then reference this from the modules
1718 ext {
18- setup = [compileSdk : 25 ,
19- buildTools : " 25 .0.3 " ,
19+ setup = [compileSdk : 27 ,
20+ buildTools : " 27 .0.0 " ,
2021 minSdk : 16 ,
21- targetSdk : 25 ]
22+ targetSdk : 27 ]
2223
23- versions = [supportLib : " 25.3.1 " ]
24+ versions = [supportLib : " 27.0.0 " ]
2425 }
2526}
2627
2728allprojects {
2829 repositories {
2930 jcenter()
31+ google()
3032 }
3133}
3234
Original file line number Diff line number Diff line change 11# Project-wide Gradle settings.
22
3- VERSION_NAME =1 .0.0
4- VERSION_CODE =100
3+ VERSION_NAME =2 .0.0
4+ VERSION_CODE =200
55
66REPOSITORY_NAME =maven
77POM_GROUP =com.matpag
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33distributionPath =wrapper/dists
44zipStoreBase =GRADLE_USER_HOME
55zipStorePath =wrapper/dists
6- distributionUrl =https\://services.gradle.org/distributions/gradle-3.5 -all.zip
6+ distributionUrl =https\://services.gradle.org/distributions/gradle-4.2.1 -all.zip
Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ android {
88 defaultConfig {
99 minSdkVersion setup. minSdk
1010 targetSdkVersion setup. targetSdk
11- versionCode 100
12- versionName " 1 .0.0"
11+ versionCode 200
12+ versionName " 2 .0.0"
1313
1414 vectorDrawables. useSupportLibrary = true
1515 }
@@ -25,8 +25,6 @@ apply from: 'gradle-jcenter-push.gradle'
2525apply from : ' gradle-mvn-push.gradle'
2626
2727dependencies {
28- compile fileTree(dir : ' libs' , include : [' *.jar' ])
29-
3028 compile " com.android.support:appcompat-v7:${ versions.supportLib} "
3129}
3230
You can’t perform that action at this time.
0 commit comments