79 lines
2.4 KiB
Text
79 lines
2.4 KiB
Text
import org.jetbrains.kotlin.gradle.plugin.PLUGIN_CLASSPATH_CONFIGURATION_NAME
|
|
|
|
plugins {
|
|
id("com.android.application")
|
|
kotlin("android")
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion(AndroidSdk.compile)
|
|
defaultConfig {
|
|
applicationId = "com.surrus.peopleinspace"
|
|
minSdkVersion(AndroidSdk.min)
|
|
targetSdkVersion(AndroidSdk.target)
|
|
|
|
versionCode = 1
|
|
versionName = "1.0"
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
buildTypes {
|
|
getByName("release") {
|
|
isMinifyEnabled = true
|
|
isShrinkResources = true
|
|
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
kotlinOptions {
|
|
jvmTarget = "1.8"
|
|
useIR = true
|
|
}
|
|
}
|
|
|
|
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
|
|
kotlinOptions {
|
|
jvmTarget = JavaVersion.VERSION_1_8.toString()
|
|
freeCompilerArgs = listOf("-Xallow-jvm-ir-dependencies", "-Xskip-prerelease-check",
|
|
"-Xuse-experimental=kotlinx.coroutines.ExperimentalCoroutinesApi"
|
|
)
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
add(PLUGIN_CLASSPATH_CONFIGURATION_NAME, "androidx.compose.compiler:compiler:${Versions.compose}")
|
|
implementation("androidx.compose.runtime:runtime:${Versions.compose}")
|
|
|
|
implementation("com.google.android.material:material:1.3.0")
|
|
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.4.0-alpha01")
|
|
implementation("androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.0-alpha01")
|
|
implementation("androidx.activity:activity-compose:1.3.0-alpha05")
|
|
|
|
|
|
implementation(Compose.ui)
|
|
implementation(Compose.uiGraphics)
|
|
implementation(Compose.uiTooling)
|
|
implementation(Compose.foundationLayout)
|
|
implementation(Compose.material)
|
|
implementation(Compose.runtimeLiveData)
|
|
implementation(Compose.navigation)
|
|
implementation(Compose.accompanist)
|
|
|
|
implementation(Koin.core)
|
|
implementation(Koin.android)
|
|
implementation(Koin.compose)
|
|
|
|
implementation("org.osmdroid:osmdroid-android:6.1.10")
|
|
|
|
testImplementation("junit:junit:4.13.2")
|
|
testImplementation("androidx.test:core:1.3.0")
|
|
testImplementation("org.robolectric:robolectric:4.4")
|
|
androidTestImplementation("androidx.test:runner:1.3.0")
|
|
|
|
implementation(project(":common"))
|
|
}
|