1
|
apply plugin: 'com.android.library'
|
2
|
apply plugin: 'kotlin-android'
|
3
|
|
4
|
android {
|
5
|
compileSdk 35
|
6
|
|
7
|
defaultConfig {
|
8
|
minSdk 21
|
9
|
targetSdk 35
|
10
|
}
|
11
|
|
12
|
buildTypes {
|
13
|
release {
|
14
|
minifyEnabled false
|
15
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
16
|
}
|
17
|
}
|
18
|
namespace 'org.distorted.flags'
|
19
|
compileOptions {
|
20
|
sourceCompatibility JavaVersion.VERSION_11
|
21
|
targetCompatibility JavaVersion.VERSION_11
|
22
|
}
|
23
|
kotlinOptions {
|
24
|
jvmTarget = '11'
|
25
|
}
|
26
|
}
|
27
|
|
28
|
dependencies {
|
29
|
implementation libs.core.ktx
|
30
|
}
|
31
|
|