Skip to content
This repository was archived by the owner on Jan 3, 2024. It is now read-only.

Commit 176a68b

Browse files
committed
Update gradle to 4.10.2
1 parent 104aff2 commit 176a68b

4 files changed

Lines changed: 19 additions & 18 deletions

File tree

CreditCardEntry/build.gradle

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
apply plugin: 'com.android.library'
22
apply plugin: 'com.github.dcendents.android-maven'
33

4+
group='com.github.tipsi'
5+
46
android {
57
compileSdkVersion 25
6-
buildToolsVersion '25.0.3'
78

89
defaultConfig {
910
minSdkVersion 16
@@ -36,9 +37,9 @@ artifacts {
3637
}
3738

3839
dependencies {
39-
compile 'com.android.support:support-compat:25.3.1'
40-
compile 'com.android.support:support-core-utils:25.3.1'
41-
compile 'com.android.support:support-core-ui:25.3.1'
42-
compile 'com.android.support:support-media-compat:25.3.1'
43-
compile 'com.android.support:support-fragment:25.3.1'
40+
implementation 'com.android.support:support-compat:25.3.1'
41+
implementation 'com.android.support:support-core-utils:25.3.1'
42+
implementation 'com.android.support:support-core-ui:25.3.1'
43+
implementation 'com.android.support:support-media-compat:25.3.1'
44+
implementation 'com.android.support:support-fragment:25.3.1'
4445
}

CreditCardEntryDemo/build.gradle

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ apply plugin: 'com.android.application'
22

33
android {
44
compileSdkVersion 25
5-
buildToolsVersion '25.0.3'
65

76
defaultConfig {
87
minSdkVersion 16
@@ -26,10 +25,10 @@ android {
2625
}
2726

2827
dependencies {
29-
compile project(':CreditCardEntry')
30-
compile 'com.android.support:support-compat:25.3.1'
31-
compile 'com.android.support:support-core-utils:25.3.1'
32-
compile 'com.android.support:support-core-ui:25.3.1'
33-
compile 'com.android.support:support-media-compat:25.3.1'
34-
compile 'com.android.support:support-fragment:25.3.1'
28+
implementation project(':CreditCardEntry')
29+
implementation 'com.android.support:support-compat:25.3.1'
30+
implementation 'com.android.support:support-core-utils:25.3.1'
31+
implementation 'com.android.support:support-core-ui:25.3.1'
32+
implementation 'com.android.support:support-media-compat:25.3.1'
33+
implementation 'com.android.support:support-fragment:25.3.1'
3534
}

build.gradle

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,20 @@
11
buildscript {
22
repositories {
3+
google()
34
mavenLocal()
45
mavenCentral()
56
jcenter()
67
}
78
dependencies {
8-
classpath 'com.android.tools.build:gradle:2.3.3'
9-
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'
9+
classpath 'com.android.tools.build:gradle:3.0.1'
10+
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
1011
}
1112
}
1213

1314
repositories {
1415
mavenCentral()
1516
}
1617

17-
task wrapper(type: Wrapper) {
18-
gradleVersion = '3.1'
18+
task wrapperCC(type: Wrapper) {
19+
gradleVersion = '4.2.10'
1920
}

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.3-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.2-all.zip

0 commit comments

Comments
 (0)