77 lines
2.4 KiB
Groovy
77 lines
2.4 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-android-extensions'
|
|
|
|
android {
|
|
compileSdkVersion 29
|
|
buildToolsVersion "29.0.2"
|
|
defaultConfig {
|
|
applicationId "com.surrus.peopleinspace"
|
|
minSdkVersion 23
|
|
targetSdkVersion 29
|
|
versionCode 1
|
|
versionName "1.0"
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
composeOptions {
|
|
kotlinCompilerVersion "1.3.70-dev-withExperimentalGoogleExtensions-20200424"
|
|
kotlinCompilerExtensionVersion = "${Versions.compose}"
|
|
}
|
|
|
|
buildFeatures {
|
|
compose true
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
packagingOptions {
|
|
exclude 'META-INF/*.kotlin_module'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:1.3.72"
|
|
implementation 'androidx.appcompat:appcompat:1.1.0'
|
|
implementation 'androidx.core:core-ktx:1.3.0'
|
|
|
|
implementation "androidx.ui:ui-core:${Versions.compose}"
|
|
implementation "androidx.ui:ui-layout:${Versions.compose}"
|
|
implementation "androidx.ui:ui-material:${Versions.compose}"
|
|
implementation "androidx.ui:ui-tooling:${Versions.compose}"
|
|
implementation "androidx.ui:ui-graphics:${Versions.compose}"
|
|
implementation "androidx.ui:ui-livedata:${Versions.compose}"
|
|
|
|
implementation "dev.chrisbanes.accompanist:accompanist-coil:0.1.5"
|
|
|
|
implementation 'com.google.android.material:material:1.1.0'
|
|
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
|
|
implementation 'androidx.navigation:navigation-fragment-ktx:2.2.2'
|
|
implementation 'androidx.navigation:navigation-ui-ktx:2.2.2'
|
|
|
|
implementation "androidx.lifecycle:lifecycle-extensions:2.2.0"
|
|
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.2.0"
|
|
|
|
implementation Koin.core
|
|
implementation Koin.android
|
|
implementation Koin.androidViewModel
|
|
|
|
|
|
testImplementation 'junit:junit:4.13'
|
|
androidTestImplementation 'androidx.test:runner:1.2.0'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
|
|
|
|
implementation project(":common")
|
|
}
|