diff options
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', |