-
Notifications
You must be signed in to change notification settings - Fork 0
/
base.gradle
30 lines (26 loc) · 866 Bytes
/
base.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'
android {
compileSdkVersion 29
buildToolsVersion "29.0.3"
defaultConfig {
minSdkVersion 21
targetSdkVersion 29
ndk { abiFilters "armeabi-v7a", "arm64-v8a" }
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
androidExtensions.features = ["parcelize"]
buildFeatures.viewBinding = true
buildFeatures.dataBinding = true
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions { jvmTarget = '1.8' }
}
dependencies {
testImplementation 'junit:junit:4.13'
androidTestImplementation 'androidx.test:runner:1.2.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
}