Revision 947367fe
Added by Leszek Koltunski 4 months ago
build.gradle | ||
---|---|---|
1 | 1 |
plugins { |
2 | 2 |
id 'com.android.library' |
3 |
alias(libs.plugins.kotlin.android) |
|
3 | 4 |
} |
4 | 5 |
|
5 | 6 |
android { |
6 | 7 |
namespace 'org.distorted.os' |
7 |
compileSdk 34
|
|
8 |
compileSdk 35
|
|
8 | 9 |
|
9 | 10 |
defaultConfig { |
10 | 11 |
minSdk 21 |
11 |
targetSdk 34
|
|
12 |
targetSdk 35
|
|
12 | 13 |
} |
13 | 14 |
|
14 | 15 |
buildTypes { |
... | ... | |
21 | 22 |
sourceCompatibility JavaVersion.VERSION_11 |
22 | 23 |
targetCompatibility JavaVersion.VERSION_11 |
23 | 24 |
} |
25 |
kotlinOptions { |
|
26 |
jvmTarget = '11' |
|
27 |
} |
|
24 | 28 |
} |
25 | 29 |
|
26 | 30 |
dependencies { |
27 | 31 |
api project(path: ':distorted-objectlib') |
32 |
implementation libs.core.ktx |
|
28 | 33 |
} |
29 | 34 |
|
30 | 35 |
|
Also available in: Unified diff
first two files converted to Kotlin