diff options
author | Allan Wang <me@allanwang.ca> | 2017-12-31 17:27:10 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-31 17:27:10 -0500 |
commit | 332d633ce32eb2d686a6342e39c0f7d4cb31edc0 (patch) | |
tree | 75690f1c3eb3df8f25fab066ce5783e8f3604d39 /android-lib.gradle | |
parent | 7a9ca234c3245047ccda9597345a26884e9d3290 (diff) | |
download | kau-332d633ce32eb2d686a6342e39c0f7d4cb31edc0.tar.gz kau-332d633ce32eb2d686a6342e39c0f7d4cb31edc0.tar.bz2 kau-332d633ce32eb2d686a6342e39c0f7d4cb31edc0.zip |
Misc (#122)3.6.1
* Update dependencies and use dexcount
* Add should log extender
* Allow null message
* Add nullable eThro
* Update changelog
Diffstat (limited to 'android-lib.gradle')
-rw-r--r-- | android-lib.gradle | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/android-lib.gradle b/android-lib.gradle index 30dafbd..c1fb523 100644 --- a/android-lib.gradle +++ b/android-lib.gradle @@ -1,6 +1,7 @@ apply plugin: 'com.android.library' apply plugin: 'kotlin-android' apply plugin: 'com.github.dcendents.android-maven' +apply plugin: 'com.getkeepsafe.dexcount' group = project.APP_GROUP android { @@ -27,6 +28,11 @@ android { testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } + compileOptions { + targetCompatibility 1.8 + sourceCompatibility 1.8 + } + buildTypes { release { minifyEnabled false |