-
-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update libraries, build tools, gradle version, ... (#222)
* Update libraries, build tools, gradle version, ... * Update build tools * Update sdk in Travis * Update Gradle wrapper to 4.4 I used the command `./gradlew wrapper --gradle-version 4.4 --distribution-type all` which also updates the jar, scripts and stuff. * No need to have 3 instances of the google repo :D * Update quality config with latest Schibsted configuration * Update skd version in travis * wat
- Loading branch information
Showing
10 changed files
with
102 additions
and
122 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,34 @@ | ||
buildscript { | ||
ext.kotlin_version = '1.1.51' | ||
repositories { | ||
ext.kotlin_version = '1.2.50' | ||
repositories { | ||
jcenter() | ||
maven { | ||
url 'https://maven.google.com/' | ||
name 'Google' | ||
} | ||
} | ||
dependencies { | ||
classpath 'com.android.tools.build:gradle:2.3.3' | ||
classpath 'com.novoda:bintray-release:0.3.4' | ||
classpath 'com.android.tools.build:gradle:3.1.3' | ||
classpath 'com.novoda:bintray-release:0.8.1' | ||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" | ||
} | ||
} | ||
|
||
allprojects { | ||
repositories { | ||
google() | ||
jcenter() | ||
maven { | ||
url "https://maven.google.com" | ||
} | ||
} | ||
} | ||
|
||
task clean(type: Delete) { | ||
delete rootProject.buildDir | ||
} | ||
|
||
ext.minSdkVersionDeclared = 9 | ||
ext.compileSdkVersionDeclared = 25 | ||
ext.buildToolsVersionDeclared = '25.0.3' | ||
ext.minSdkVersionDeclared = 14 | ||
ext.compileSdkVersionDeclared = 28 | ||
|
||
ext.supportLibVersion = '25.4.0' | ||
ext.espressoVersion = '3.0.1' | ||
ext.uiAutomatorVersion = '2.1.2' | ||
ext.supportLibVersion = '27.1.1' | ||
ext.espressoVersion = '3.0.2' | ||
ext.uiAutomatorVersion = '2.1.3' | ||
ext.baristaVersion = '2.4.0' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
#Tue May 16 16:31:24 CEST 2017 | ||
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.4-all.zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters