Revision cdcb01f0
Added by Leszek Koltunski 7 months ago
| build.gradle | ||
|---|---|---|
| 1 |
plugins {
|
|
| 2 |
alias(libs.plugins.kotlin.android) |
|
| 3 |
} |
|
| 1 | 4 |
apply plugin: 'com.android.library' |
| 2 | 5 |
|
| 3 | 6 |
android {
|
| ... | ... | |
| 7 | 10 |
keyAlias = 'distorted' |
| 8 | 11 |
} |
| 9 | 12 |
} |
| 10 |
compileSdk 34
|
|
| 13 |
compileSdk 35
|
|
| 11 | 14 |
|
| 12 | 15 |
defaultConfig {
|
| 13 | 16 |
minSdkVersion 21 |
| 14 |
targetSdkVersion 34 |
|
| 15 |
externalNativeBuild {
|
|
| 16 |
cmake {
|
|
| 17 |
cppFlags '' |
|
| 18 |
} |
|
| 19 |
} |
|
| 17 |
targetSdk 35 |
|
| 20 | 18 |
} |
| 21 | 19 |
|
| 22 | 20 |
buildTypes {
|
| ... | ... | |
| 40 | 38 |
version '3.22.1' |
| 41 | 39 |
} |
| 42 | 40 |
} |
| 41 |
kotlinOptions {
|
|
| 42 |
jvmTarget = '11' |
|
| 43 |
} |
|
| 44 |
} |
|
| 45 |
|
|
| 46 |
dependencies {
|
|
| 47 |
implementation libs.core.ktx |
|
| 43 | 48 |
} |
Also available in: Unified diff
first two files converted to Kotlin