Merge pull request #1499 from NectGmbH/detox-10-android-build

Adding compileOptions Java 1.8 to build.gradle
This commit is contained in:
Hampton Maxwell 2019-03-05 12:55:58 -08:00 committed by GitHub
commit f710df5786
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,6 +7,11 @@ def safeExtGet(prop, fallback) {
android {
compileSdkVersion safeExtGet('compileSdkVersion', 27)
buildToolsVersion safeExtGet('buildToolsVersion', '27.0.3')
compileOptions {
targetCompatibility JavaVersion.VERSION_1_8
sourceCompatibility JavaVersion.VERSION_1_8
}
defaultConfig {
minSdkVersion safeExtGet('minSdkVersion', 16)
@ -32,4 +37,4 @@ dependencies {
}
implementation 'com.squareup.okhttp3:okhttp:3.12.1'
}
}