87 lines
2.5 KiB
Groovy
87 lines
2.5 KiB
Groovy
//apply plugin: 'com.android.application'
|
|
//apply plugin: 'kotlin-android'
|
|
//apply plugin: "kotlin-kapt"
|
|
//apply plugin: "androidx.navigation.safeargs.kotlin"
|
|
//apply plugin: "kotlin-parcelize"
|
|
plugins {
|
|
id('com.android.application')
|
|
id('kotlin-android')
|
|
id('kotlin-kapt')
|
|
id('androidx.navigation.safeargs.kotlin')
|
|
id('kotlin-parcelize')
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion 32
|
|
buildToolsVersion "30.0.3"
|
|
|
|
defaultConfig {
|
|
applicationId "com.example.todoapp"
|
|
minSdkVersion 26
|
|
targetSdkVersion 32
|
|
versionCode 1
|
|
versionName "1.0"
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
buildFeatures{
|
|
dataBinding true
|
|
viewBinding true
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
kotlinOptions {
|
|
jvmTarget = JavaVersion.VERSION_1_8.toString()
|
|
}
|
|
|
|
sourceSets {
|
|
main {
|
|
kotlin {
|
|
srcDirs += 'build/generated/source/navigation-args'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: "libs", include: ["*.jar"])
|
|
implementation 'androidx.core:core-ktx:1.8.0'
|
|
implementation 'androidx.appcompat:appcompat:1.4.2'
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
|
testImplementation 'junit:junit:4.13.2'
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
|
|
|
|
// Navigation Component
|
|
implementation 'androidx.navigation:navigation-fragment-ktx:2.5.0'
|
|
implementation 'androidx.navigation:navigation-ui-ktx:2.5.0'
|
|
|
|
// Room components
|
|
implementation "androidx.room:room-runtime:2.4.2"
|
|
kapt "androidx.room:room-compiler:2.4.2"
|
|
implementation "androidx.room:room-ktx:2.4.2"
|
|
androidTestImplementation "androidx.room:room-testing:2.4.2"
|
|
|
|
// Lifecycle components
|
|
implementation "androidx.lifecycle:lifecycle-extensions:2.2.0"
|
|
implementation "androidx.lifecycle:lifecycle-common-java8:2.5.0"
|
|
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.0"
|
|
|
|
// Kotlin components
|
|
api "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.0"
|
|
api "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.1"
|
|
|
|
} |