diff options
author | Allan Wang <me@allanwang.ca> | 2017-12-31 17:14:26 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-31 17:14:26 -0500 |
commit | 726d2a4dc3d3158490ca94b660b195898becb30a (patch) | |
tree | 944bd0dfe6f48b055b1682f710de4c2b6e5bd00c /app/build.gradle | |
parent | 77a24cd4e2899dbf0588852d5716b6f4821ed437 (diff) | |
download | frost-726d2a4dc3d3158490ca94b660b195898becb30a.tar.gz frost-726d2a4dc3d3158490ca94b660b195898becb30a.tar.bz2 frost-726d2a4dc3d3158490ca94b660b195898becb30a.zip |
Misc (#592)v1.7.6
* Update dependencies
* Allow null message
* Support new kau logging
Diffstat (limited to 'app/build.gradle')
-rw-r--r-- | app/build.gradle | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/app/build.gradle b/app/build.gradle index d3cef5c7..54284b09 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -7,6 +7,7 @@ apply plugin: 'kotlin-android' apply plugin: 'kotlin-kapt' apply plugin: 'io.fabric' apply plugin: 'com.github.triplet.play' +apply plugin: 'com.getkeepsafe.dexcount' def withPlaySigning = file('../files/gplay-keys.json').exists() /* @@ -49,6 +50,11 @@ android { } } + compileOptions { + targetCompatibility 1.8 + sourceCompatibility 1.8 + } + lintOptions { warningsAsErrors true disable 'TrustAllX509TrustManager', |