2019-12-22 20:25:01 +00:00
|
|
|
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"
|
|
|
|
}
|
2020-03-22 17:38:14 +00:00
|
|
|
|
|
|
|
composeOptions {
|
|
|
|
kotlinCompilerExtensionVersion = "${Versions.compose}"
|
|
|
|
}
|
|
|
|
|
|
|
|
buildFeatures {
|
|
|
|
compose true
|
|
|
|
}
|
|
|
|
|
2019-12-22 20:25:01 +00:00
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
kotlinOptions {
|
|
|
|
jvmTarget = "1.8"
|
|
|
|
}
|
|
|
|
|
|
|
|
packagingOptions {
|
|
|
|
exclude 'META-INF/*.kotlin_module'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk7:${Versions.kotlin}"
|
|
|
|
implementation 'androidx.appcompat:appcompat:1.1.0'
|
|
|
|
implementation 'androidx.core:core-ktx:1.1.0'
|
|
|
|
|
2020-03-22 17:38:14 +00:00
|
|
|
implementation "androidx.ui:ui-framework:${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}"
|
2020-02-21 20:22:07 +00:00
|
|
|
|
2019-12-22 20:25:01 +00:00
|
|
|
|
|
|
|
implementation 'com.google.android.material:material:1.0.0'
|
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
|
|
|
implementation 'androidx.navigation:navigation-fragment:2.1.0'
|
|
|
|
implementation 'androidx.navigation:navigation-ui:2.1.0'
|
|
|
|
implementation 'androidx.lifecycle:lifecycle-extensions:2.1.0'
|
|
|
|
implementation 'androidx.navigation:navigation-fragment-ktx:2.1.0'
|
|
|
|
implementation 'androidx.navigation:navigation-ui-ktx:2.1.0'
|
|
|
|
|
|
|
|
|
|
|
|
implementation Koin.core
|
|
|
|
implementation Koin.android
|
|
|
|
implementation Koin.androidViewModel
|
|
|
|
|
|
|
|
|
|
|
|
testImplementation 'junit:junit:4.12'
|
|
|
|
androidTestImplementation 'androidx.test:runner:1.2.0'
|
|
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
|
|
|
|
|
|
|
|
implementation project(":common")
|
|
|
|
}
|