70 lines
2.3 KiB
Groovy
70 lines
2.3 KiB
Groovy
plugins {
|
|
id 'com.android.application'
|
|
id 'kotlin-android'
|
|
id 'kotlin-kapt'
|
|
id 'androidx.navigation.safeargs.kotlin'
|
|
}
|
|
|
|
android {
|
|
compileSdk 35
|
|
|
|
defaultConfig {
|
|
applicationId "dev.lowrespalmtree.comet"
|
|
minSdk 24
|
|
targetSdk 35
|
|
versionCode 1
|
|
versionName "0.1.0"
|
|
|
|
javaCompileOptions {
|
|
annotationProcessorOptions {
|
|
arguments += ["room.schemaLocation": "$projectDir/schemas".toString()]
|
|
}
|
|
}
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
buildFeatures {
|
|
viewBinding true
|
|
}
|
|
testOptions {
|
|
unitTests.returnDefaultValues = true
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
signingConfig signingConfigs.debug
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = '1.8'
|
|
}
|
|
namespace 'dev.lowrespalmtree.comet'
|
|
}
|
|
|
|
dependencies {
|
|
def nav_version = '2.7.7'
|
|
def room_version = '2.6.1'
|
|
implementation 'androidx.appcompat:appcompat:1.7.0'
|
|
implementation "androidx.cardview:cardview:1.0.0"
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
|
implementation 'androidx.core:core-ktx:1.13.1'
|
|
implementation 'androidx.fragment:fragment-ktx:1.8.2'
|
|
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.4'
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
|
implementation "androidx.navigation:navigation-fragment-ktx:$nav_version"
|
|
implementation "androidx.navigation:navigation-ui-ktx:$nav_version"
|
|
implementation 'androidx.preference:preference-ktx:1.2.1'
|
|
implementation 'androidx.recyclerview:recyclerview:1.3.2'
|
|
implementation "androidx.room:room-runtime:$room_version"
|
|
implementation "androidx.room:room-ktx:$room_version"
|
|
implementation 'com.google.android.material:material:1.12.0'
|
|
kapt "androidx.room:room-compiler:$room_version"
|
|
testImplementation 'junit:junit:4.13.2'
|
|
androidTestImplementation 'androidx.test.ext:junit:1.2.1'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1'
|
|
} |