60 lines
1.7 KiB
Plaintext
60 lines
1.7 KiB
Plaintext
plugins {
|
|
alias(libs.plugins.android.application)
|
|
}
|
|
|
|
android {
|
|
namespace = "com.proculite.logmylocation"
|
|
compileSdk = 34
|
|
|
|
defaultConfig {
|
|
applicationId = "com.proculite.logmylocation"
|
|
minSdk = 26
|
|
targetSdk = 34
|
|
versionCode = 1
|
|
versionName = "1.0"
|
|
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
isMinifyEnabled = false
|
|
proguardFiles(
|
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
|
"proguard-rules.pro"
|
|
)
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
|
|
implementation(libs.appcompat)
|
|
implementation(libs.material)
|
|
implementation(libs.activity)
|
|
implementation(libs.constraintlayout)
|
|
testImplementation(libs.junit)
|
|
androidTestImplementation(libs.ext.junit)
|
|
androidTestImplementation(libs.espresso.core)
|
|
|
|
val room_version = "2.6.1"
|
|
|
|
implementation("androidx.room:room-runtime:$room_version")
|
|
annotationProcessor("androidx.room:room-compiler:$room_version")
|
|
// optional - RxJava3 support for Room
|
|
implementation("androidx.room:room-rxjava3:$room_version")
|
|
|
|
// optional - Guava support for Room, including Optional and ListenableFuture
|
|
implementation("androidx.room:room-guava:$room_version")
|
|
|
|
implementation("io.jenetics:jpx:3.1.0")
|
|
// https://mvnrepository.com/artifact/org.codehaus.woodstox/woodstox-core-asl
|
|
implementation("org.codehaus.woodstox:woodstox-core-asl:4.4.1")
|
|
implementation("com.github.pengrad:java-telegram-bot-api:7.9.1")
|
|
|
|
}
|