Skip to content
This repository was archived by the owner on Nov 5, 2025. It is now read-only.

Commit 5b5a7b2

Browse files
author
Daniel San
committed
Update library dependencies and build tools
Signed-off-by: Daniel San <danielsan@ilhasoft.com.br>
1 parent 0db34e5 commit 5b5a7b2

4 files changed

Lines changed: 14 additions & 12 deletions

File tree

build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
11
buildscript {
22
repositories {
3+
maven { url 'https://maven.google.com' }
34
jcenter()
45
}
56
dependencies {
6-
classpath 'com.android.tools.build:gradle:2.2.3'
7+
classpath 'com.android.tools.build:gradle:2.3.3'
78
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
89
}
910
}
1011

1112
allprojects {
1213
repositories {
14+
maven { url 'https://maven.google.com' }
1315
jcenter()
1416
}
1517
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Mon Oct 03 15:29:38 BRT 2016
1+
#Wed Sep 20 21:27:17 BRT 2017
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-3.3-all.zip

library/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,27 +4,27 @@ apply plugin: 'com.github.dcendents.android-maven'
44
group='org.bitbucket.ilhasoft'
55

66
android {
7-
compileSdkVersion 25
8-
buildToolsVersion "25.0.2"
7+
compileSdkVersion 26
8+
buildToolsVersion "26.0.0"
99

1010
dataBinding {
1111
enabled true
1212
}
1313

1414
defaultConfig {
1515
minSdkVersion 15
16-
targetSdkVersion 25
16+
targetSdkVersion 26
1717
versionCode 3
18-
versionName "0.6.3"
18+
versionName "0.7.0"
1919
consumerProguardFiles 'proguard-rules.pro'
2020
}
2121
}
2222

2323
dependencies {
2424
compile fileTree(dir: 'libs', include: ['*.jar'])
25+
compile 'com.android.support:appcompat-v7:26.1.0'
26+
compile 'com.android.support:design:26.1.0'
2527
testCompile 'junit:junit:4.12'
26-
compile 'com.android.support:appcompat-v7:25.3.0'
27-
compile 'com.android.support:design:25.3.0'
2828
}
2929

3030
// build a jar with source files

sample/build.gradle

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

33
android {
4-
compileSdkVersion 25
5-
buildToolsVersion "25.0.2"
4+
compileSdkVersion 26
5+
buildToolsVersion "26.0.0"
66

77
dataBinding {
88
enabled true
@@ -11,7 +11,7 @@ android {
1111
defaultConfig {
1212
applicationId "br.com.ilhasoft.support.validation.sample"
1313
minSdkVersion 15
14-
targetSdkVersion 25
14+
targetSdkVersion 26
1515
versionCode 1
1616
versionName "1.0"
1717
}

0 commit comments

Comments
 (0)