This repository has been archived by the owner on Jun 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Upgrading to API 27 (and other latest libs)
- Increasing version code to 1.1.1 - Increasing minimum supported API to 14
- Loading branch information
Showing
14 changed files
with
102 additions
and
114 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,43 @@ | ||
buildscript { | ||
repositories { | ||
google() | ||
jcenter() | ||
mavenCentral() | ||
} | ||
dependencies { | ||
classpath 'com.android.tools.build:gradle:2.3.3' | ||
classpath 'com.android.tools.build:gradle:3.1.2' | ||
classpath 'com.dicedmelon.gradle:jacoco-android:0.1.1' // JaCoCo Android tests | ||
} | ||
} | ||
|
||
plugins { | ||
id "com.github.dcendents.android-maven" version "1.5" // used for uploading to mavenCentral | ||
id "com.jfrog.bintray" version "1.7.3" // used for uploading to jCenter | ||
id "me.tatarka.retrolambda" version "3.6.0" // allowing Lambdas on Java 7 and older | ||
id "com.jfrog.bintray" version "1.8.0" // used for uploading to jCenter | ||
// id "me.tatarka.retrolambda" version "3.6.0" // allowing Lambdas on Java 7 and older | ||
} | ||
|
||
allprojects { | ||
repositories { | ||
google() | ||
jcenter() | ||
mavenCentral() | ||
} | ||
} | ||
|
||
ext { | ||
// If changed, commit and merge to 'release' branch to auto-deploy. Only tagged commits on release branch will be deployed | ||
VERSION_CODE = 110 | ||
VERSION_NAME = "1.1" | ||
VERSION_CODE = 111 | ||
VERSION_NAME = "1.1.1" | ||
|
||
// don't forget to update CI config in: '.travis.yml' | ||
BUILD_TOOLS = "25.0.2" | ||
MINIMUM_SDK = 9 | ||
COMPILE_SDK = 25 | ||
TARGET_SDK = 25 | ||
BUILD_TOOLS = "27.0.3" | ||
MINIMUM_SDK = 14 | ||
COMPILE_SDK = 27 | ||
TARGET_SDK = 27 | ||
|
||
// app/library module dependency versions | ||
APPCOMPAT = "25.3.1" | ||
APPCOMPAT = "27.1.1" | ||
ESPRESSO = "2.2.2" | ||
JUNIT = "4.12" | ||
ROBOLECTRIC = "3.3.2" | ||
ROBOLECTRIC = "3.8" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#Sun Apr 02 17:42:25 CEST 2017 | ||
#Mon May 14 16:38:06 CEST 2018 | ||
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
Oops, something went wrong.