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