Files
driver-manager/app/build.gradle.kts

42 lines
1.1 KiB
Kotlin

plugins {
id("com.android.application")
}
android {
namespace = "com.seteclabs.drivermanager"
compileSdk = 35
defaultConfig {
applicationId = "com.seteclabs.drivermanager"
minSdk = 29
targetSdk = 35
versionCode = 200
versionName = "2.0.0"
}
buildTypes {
release {
isMinifyEnabled = false
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
}
dependencies {
// Xposed API - compileOnly so it's not packaged (provided by LSPosed at runtime)
compileOnly("de.robv.android.xposed:api:82")
compileOnly("de.robv.android.xposed:api:82:sources")
// AndroidX
implementation("androidx.appcompat:appcompat:1.7.0")
implementation("com.google.android.material:material:1.12.0")
implementation("androidx.recyclerview:recyclerview:1.3.2")
implementation("androidx.cardview:cardview:1.0.0")
implementation("androidx.preference:preference:1.2.1")
implementation("com.google.code.gson:gson:2.11.0")
}