| author | Da Risk <da_risk@geekorum.com> |
| Thu, 13 Apr 2023 17:37:13 -0400 | |
| changeset 4 | 3d88feb1156b |
| parent 1 | 137a5da55ed9 |
| child 6 | 67743d62eda9 |
| permissions | -rw-r--r-- |
| 0 | 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 {
|
|
|
1
137a5da55ed9
core: add LicenseInfoRepository and OssLicenseParser
Da Risk <da_risk@geekorum.com>
parents:
0
diff
changeset
|
39 |
implementation(libs.okio) |
|
137a5da55ed9
core: add LicenseInfoRepository and OssLicenseParser
Da Risk <da_risk@geekorum.com>
parents:
0
diff
changeset
|
40 |
implementation(libs.kotlinx.coroutines) |
| 0 | 41 |
|
42 |
testImplementation(libs.junit) |
|
43 |
androidTestImplementation(libs.androidx.test.ext.junit) |
|
44 |
androidTestImplementation(libs.espresso.core) |
|
45 |
} |