Skip to content

Commit a205a45

Browse files
committed
BUILD - Prepare v2.0.0, update everything to the latest version.
1 parent 9d8f747 commit a205a45

6 files changed

Lines changed: 22 additions & 13 deletions

File tree

CHANGELOG.MD

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
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
##

app/build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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+
}

build.gradle

Lines changed: 8 additions & 6 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.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

2728
allprojects {
2829
repositories {
2930
jcenter()
31+
google()
3032
}
3133
}
3234

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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

66
REPOSITORY_NAME=maven
77
POM_GROUP=com.matpag

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ 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-3.5-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.2.1-all.zip

library/build.gradle

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff 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'
2525
apply from: 'gradle-mvn-push.gradle'
2626

2727
dependencies {
28-
compile fileTree(dir: 'libs', include: ['*.jar'])
29-
3028
compile "com.android.support:appcompat-v7:${versions.supportLib}"
3129
}
3230

0 commit comments

Comments
 (0)