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

Commit

Permalink
Update gradle to 4.10.2
Browse files Browse the repository at this point in the history
  • Loading branch information
cybergrind committed Oct 28, 2018
1 parent 104aff2 commit 176a68b
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 18 deletions.
13 changes: 7 additions & 6 deletions CreditCardEntry/build.gradle
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
apply plugin: 'com.android.library'
apply plugin: 'com.github.dcendents.android-maven'

group='com.github.tipsi'

android {
compileSdkVersion 25
buildToolsVersion '25.0.3'

defaultConfig {
minSdkVersion 16
Expand Down Expand Up @@ -36,9 +37,9 @@ artifacts {
}

dependencies {
compile 'com.android.support:support-compat:25.3.1'
compile 'com.android.support:support-core-utils:25.3.1'
compile 'com.android.support:support-core-ui:25.3.1'
compile 'com.android.support:support-media-compat:25.3.1'
compile 'com.android.support:support-fragment:25.3.1'
implementation 'com.android.support:support-compat:25.3.1'
implementation 'com.android.support:support-core-utils:25.3.1'
implementation 'com.android.support:support-core-ui:25.3.1'
implementation 'com.android.support:support-media-compat:25.3.1'
implementation 'com.android.support:support-fragment:25.3.1'
}
13 changes: 6 additions & 7 deletions CreditCardEntryDemo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ apply plugin: 'com.android.application'

android {
compileSdkVersion 25
buildToolsVersion '25.0.3'

defaultConfig {
minSdkVersion 16
Expand All @@ -26,10 +25,10 @@ android {
}

dependencies {
compile project(':CreditCardEntry')
compile 'com.android.support:support-compat:25.3.1'
compile 'com.android.support:support-core-utils:25.3.1'
compile 'com.android.support:support-core-ui:25.3.1'
compile 'com.android.support:support-media-compat:25.3.1'
compile 'com.android.support:support-fragment:25.3.1'
implementation project(':CreditCardEntry')
implementation 'com.android.support:support-compat:25.3.1'
implementation 'com.android.support:support-core-utils:25.3.1'
implementation 'com.android.support:support-core-ui:25.3.1'
implementation 'com.android.support:support-media-compat:25.3.1'
implementation 'com.android.support:support-fragment:25.3.1'
}
9 changes: 5 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
buildscript {
repositories {
google()
mavenLocal()
mavenCentral()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.3'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'
classpath 'com.android.tools.build:gradle:3.0.1'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
}
}

repositories {
mavenCentral()
}

task wrapper(type: Wrapper) {
gradleVersion = '3.1'
task wrapperCC(type: Wrapper) {
gradleVersion = '4.2.10'
}
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.2-all.zip

0 comments on commit 176a68b

Please sign in to comment.