diff options
author | Allan Wang <me@allanwang.ca> | 2017-07-06 02:52:18 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-06 02:52:18 -0400 |
commit | bbe30297a216218ded4c2c6e3e8c2843652eb7a7 (patch) | |
tree | d120e124cb12d5474d37f1bc3e67fdaa5179c4c3 /app/build.gradle | |
parent | 311c7eeb304048c31f986d2d06010d0a486555ad (diff) | |
download | frost-bbe30297a216218ded4c2c6e3e8c2843652eb7a7.tar.gz frost-bbe30297a216218ded4c2c6e3e8c2843652eb7a7.tar.bz2 frost-bbe30297a216218ded4c2c6e3e8c2843652eb7a7.zip |
Dev (#29) - micro fixes mostly from KAUv1.1.4
* Add changelog
* Add play descriptions
* Test build since tag
* Adjust view on keyboard, fixes
* Update kau, merge kpref singles, update swipe
* Fix swipe background
* Allow swipe customization
Diffstat (limited to 'app/build.gradle')
-rw-r--r-- | app/build.gradle | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/app/build.gradle b/app/build.gradle index 169c0a77..921f0cf5 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -12,6 +12,7 @@ apply plugin: 'com.github.triplet.play' play { jsonFile = file('../files/gplay-keys.json') track = 'alpha' + errorOnSizeLimit = true uploadImages = false untrackOld = true } @@ -20,11 +21,11 @@ android { compileSdkVersion Integer.parseInt(project.TARGET_SDK) buildToolsVersion project.BUILD_TOOLS - def offset = Integer.parseInt(System.getenv("TRAVIS_BUILD_NUMBER") ?: "0") +// def offset = Integer.parseInt(System.getenv("TRAVIS_BUILD_NUMBER") ?: "0") androidGitVersion { - baseCode offset - codeFormat = 'MMNNPPXX' +// baseCode offset + codeFormat = 'MMNNPPBB' //since we use travis, all builds will be dirty format = '%tag%%.count%%-commit%' prefix 'v' @@ -127,7 +128,7 @@ dependencies { }) testCompile 'junit:junit:4.12' - compile "ca.allanwang:kau:${KAU}" + compile "ca.allanwang.kau:core:${KAU}" compile "org.jetbrains.kotlin:kotlin-stdlib:${KOTLIN}" testCompile "org.jetbrains.kotlin:kotlin-test-junit:${KOTLIN}" @@ -160,8 +161,6 @@ dependencies { compile "nz.bradcampbell:paperparcel-kotlin:${PAPER_PARCEL}" kapt "nz.bradcampbell:paperparcel-compiler:${PAPER_PARCEL}" - compile "com.jude:swipebackhelper:${SWIPE_BACK}" - compile("com.crashlytics.sdk.android:crashlytics:${CRASHLYTICS}@aar") { transitive = true; } |