PeopleInSpace/app/build.gradle

78 lines
2.4 KiB
Groovy
Raw Normal View History

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"
}
composeOptions {
kotlinCompilerVersion "1.3.70-dev-withExperimentalGoogleExtensions-20200424"
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'
}
}
2020-02-07 12:27:08 +00:00
compileOptions {
targetCompatibility JavaVersion.VERSION_1_8
}
2019-12-22 20:25:01 +00:00
kotlinOptions {
2020-02-07 12:27:08 +00:00
jvmTarget = JavaVersion.VERSION_1_8
2019-12-22 20:25:01 +00:00
}
packagingOptions {
exclude 'META-INF/*.kotlin_module'
}
}
dependencies {
implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk7:${Versions.kotlin}"
implementation 'androidx.appcompat:appcompat:1.1.0'
2020-02-07 12:27:08 +00:00
implementation 'androidx.core:core-ktx:1.2.0'
2019-12-22 20:25:01 +00:00
2020-05-16 21:21:20 +00:00
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}"
2020-02-21 20:22:07 +00:00
2019-12-22 20:25:01 +00:00
2020-02-07 12:27:08 +00:00
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.1'
implementation 'androidx.navigation:navigation-ui-ktx:2.2.1'
2019-12-22 20:25:01 +00:00
implementation "androidx.core:core-ktx:1.2.0"
implementation "androidx.lifecycle:lifecycle-extensions:2.2.0"
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.2.0"
2019-12-22 20:25:01 +00:00
implementation Koin.core
implementation Koin.android
implementation Koin.androidViewModel
2020-02-07 12:27:08 +00:00
testImplementation 'junit:junit:4.13'
2019-12-22 20:25:01 +00:00
androidTestImplementation 'androidx.test:runner:1.2.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
implementation project(":common")
}