69 lines
2.2 KiB
Groovy
69 lines
2.2 KiB
Groovy
plugins {
|
|
id 'com.android.application'
|
|
id 'org.jetbrains.kotlin.android'
|
|
}
|
|
|
|
android {
|
|
namespace 'ru.myitschool.lab23'
|
|
compileSdk 33
|
|
|
|
defaultConfig {
|
|
applicationId "ru.myitschool.lab23"
|
|
minSdk 27
|
|
targetSdk 33
|
|
versionCode 1
|
|
versionName "1.0"
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_11
|
|
targetCompatibility JavaVersion.VERSION_11
|
|
}
|
|
testOptions {
|
|
}
|
|
buildFeatures {
|
|
viewBinding true
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = '11'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
|
|
implementation 'androidx.core:core-ktx:1.9.0'
|
|
implementation 'androidx.appcompat:appcompat:1.5.1'
|
|
implementation 'com.google.android.material:material:1.7.0'
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
|
implementation "androidx.lifecycle:lifecycle-livedata-ktx:$lifecycle_version"
|
|
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycle_version"
|
|
implementation "androidx.navigation:navigation-fragment-ktx:$navigation_version"
|
|
implementation "androidx.navigation:navigation-fragment:$navigation_version"
|
|
implementation "androidx.navigation:navigation-ui:$navigation_version"
|
|
|
|
//coin for DI
|
|
implementation "io.insert-koin:koin-core:$koin_version"
|
|
implementation "io.insert-koin:koin-android:$koin_version"
|
|
testImplementation "io.insert-koin:koin-test:$koin_version"
|
|
|
|
implementation 'androidx.test.uiautomator:uiautomator:2.2.0'
|
|
implementation 'org.apache.commons:commons-math3:3.6.1'
|
|
testImplementation 'junit:junit:4.13.2'
|
|
|
|
androidTestImplementation "io.github.kakaocup:kakao:$kakao_version"
|
|
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.4'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.0'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-intents:3.5.0'
|
|
androidTestImplementation 'androidx.test:runner:1.5.1'
|
|
androidTestImplementation 'androidx.test:rules:1.5.0'
|
|
|
|
} |