Revision 6ecb63ad
Added by Leszek Koltunski 7 months ago
| build.gradle | ||
|---|---|---|
| 1 | 1 |
plugins {
|
| 2 | 2 |
id 'com.android.application' |
| 3 |
alias(libs.plugins.kotlin.android) |
|
| 3 | 4 |
} |
| 4 | 5 |
|
| 5 | 6 |
android {
|
| 6 | 7 |
namespace 'org.distorted.phasedsolver' |
| 7 |
compileSdk 34
|
|
| 8 |
compileSdk 35
|
|
| 8 | 9 |
|
| 9 | 10 |
defaultConfig {
|
| 10 | 11 |
applicationId "org.distorted.phasedsolver" |
| 11 |
minSdk 21
|
|
| 12 |
targetSdk 34
|
|
| 12 |
minSdk 23
|
|
| 13 |
targetSdk 35
|
|
| 13 | 14 |
versionCode 1 |
| 14 | 15 |
versionName "1.0" |
| 15 |
|
|
| 16 |
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" |
|
| 17 | 16 |
} |
| 18 | 17 |
|
| 19 | 18 |
buildTypes {
|
| ... | ... | |
| 26 | 25 |
sourceCompatibility JavaVersion.VERSION_11 |
| 27 | 26 |
targetCompatibility JavaVersion.VERSION_11 |
| 28 | 27 |
} |
| 28 |
kotlinOptions {
|
|
| 29 |
jvmTarget = '11' |
|
| 30 |
} |
|
| 29 | 31 |
} |
| 30 | 32 |
|
| 31 | 33 |
dependencies {
|
| 32 | 34 |
api project(':distorted-objectlib')
|
| 33 | 35 |
implementation project(':distorted-os-android')
|
| 34 |
implementation ('androidx.preference:preference:1.2.1')
|
|
| 36 |
implementation libs.preference |
|
| 37 |
implementation libs.core.ktx |
|
| 35 | 38 |
} |
| 36 | 39 |
|
Also available in: Unified diff
first two files converted to Kotlin