68 lines
No EOL
2.2 KiB
Text
68 lines
No EOL
2.2 KiB
Text
plugins {
|
|
id("com.android.application")
|
|
id("kotlin-android")
|
|
}
|
|
|
|
android {
|
|
compileSdk = 30
|
|
|
|
defaultConfig {
|
|
applicationId = "com.wbrawner.skerge"
|
|
minSdk = 26
|
|
targetSdk = 30
|
|
versionCode = 1
|
|
versionName = "1.0"
|
|
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
vectorDrawables {
|
|
useSupportLibrary = true
|
|
}
|
|
}
|
|
|
|
packagingOptions {
|
|
resources.pickFirsts.addAll(listOf("META-INF/AL2.0", "META-INF/LGPL2.1"))
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
isMinifyEnabled = false
|
|
proguardFiles(
|
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
|
"proguard-rules.pro"
|
|
)
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = "1.8"
|
|
}
|
|
buildFeatures {
|
|
compose = true
|
|
}
|
|
composeOptions {
|
|
kotlinCompilerExtensionVersion = rootProject.extra["compose_version"] as String
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
|
|
implementation("androidx.core:core-ktx:1.5.0")
|
|
implementation("androidx.appcompat:appcompat:1.3.0")
|
|
implementation("com.google.android.material:material:1.3.0")
|
|
implementation("androidx.compose.ui:ui:${rootProject.extra["compose_version"]}")
|
|
implementation("androidx.compose.material:material:${rootProject.extra["compose_version"]}")
|
|
implementation("androidx.compose.ui:ui-tooling:${rootProject.extra["compose_version"]}")
|
|
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.3.1")
|
|
implementation("androidx.activity:activity-compose:1.3.0-beta02")
|
|
val ktorVersion = "1.6.0"
|
|
implementation("io.ktor:ktor-client-cio:$ktorVersion")
|
|
implementation("io.ktor:ktor-client-android:$ktorVersion")
|
|
androidTestImplementation("io.ktor:ktor-client-mock:$ktorVersion")
|
|
testImplementation("junit:junit:4.13.2")
|
|
androidTestImplementation("androidx.test.ext:junit:1.1.2")
|
|
androidTestImplementation("androidx.test.espresso:espresso-core:3.3.0")
|
|
androidTestImplementation("androidx.compose.ui:ui-test-junit4:${rootProject.extra["compose_version"]}")
|
|
} |