|
0
|
1 |
plugins {
|
|
|
2 |
id("com.android.library")
|
|
|
3 |
kotlin("android")
|
|
|
4 |
id("com.geekorum.build.source-license-checker")
|
|
|
5 |
}
|
|
|
6 |
|
|
|
7 |
android {
|
|
|
8 |
namespace = "com.geekorum.aboutoss.ui"
|
|
|
9 |
compileSdk = 33
|
|
|
10 |
|
|
|
11 |
defaultConfig {
|
|
|
12 |
minSdk = 28
|
|
|
13 |
|
|
|
14 |
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
|
15 |
consumerProguardFiles("consumer-rules.pro")
|
|
|
16 |
}
|
|
|
17 |
|
|
|
18 |
buildTypes {
|
|
|
19 |
release {
|
|
|
20 |
isMinifyEnabled = false
|
|
|
21 |
proguardFiles(
|
|
|
22 |
getDefaultProguardFile("proguard-android-optimize.txt"),
|
|
|
23 |
"proguard-rules.pro"
|
|
|
24 |
)
|
|
|
25 |
}
|
|
|
26 |
}
|
|
|
27 |
compileOptions {
|
|
|
28 |
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
|
29 |
targetCompatibility = JavaVersion.VERSION_1_8
|
|
|
30 |
}
|
|
|
31 |
kotlinOptions {
|
|
|
32 |
jvmTarget = "1.8"
|
|
|
33 |
}
|
|
|
34 |
}
|
|
|
35 |
|
|
|
36 |
dependencies {
|
|
|
37 |
|
|
|
38 |
implementation(libs.core.ktx)
|
|
|
39 |
implementation(libs.appcompat)
|
|
|
40 |
implementation(libs.material)
|
|
|
41 |
testImplementation(libs.junit)
|
|
|
42 |
androidTestImplementation(libs.androidx.test.ext.junit)
|
|
|
43 |
androidTestImplementation(libs.espresso.core)
|
|
|
44 |
} |