51 lines
1.1 KiB
Kotlin
51 lines
1.1 KiB
Kotlin
plugins {
|
|
id("com.android.application")
|
|
id("org.jetbrains.kotlin.android")
|
|
}
|
|
|
|
android {
|
|
compileSdk = 32
|
|
|
|
defaultConfig {
|
|
applicationId = "pub.chara.disablealttab"
|
|
minSdk = 24
|
|
targetSdk = 32
|
|
versionCode = 1
|
|
versionName = "1"
|
|
}
|
|
|
|
buildTypes {
|
|
named("release") {
|
|
isShrinkResources = true
|
|
isMinifyEnabled = true
|
|
proguardFiles("proguard-rules.pro")
|
|
}
|
|
}
|
|
|
|
androidResources {
|
|
additionalParameters("--allow-reserved-package-id", "--package-id", "0x45")
|
|
}
|
|
|
|
packagingOptions {
|
|
resources {
|
|
excludes += "/META-INF/**"
|
|
excludes += "/kotlin/**"
|
|
excludes += "/*.txt"
|
|
excludes += "/*.bin"
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
|
targetCompatibility = JavaVersion.VERSION_11
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = JavaVersion.VERSION_11.toString()
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation("com.github.kyuubiran:EzXHelper:0.9.2")
|
|
compileOnly("de.robv.android.xposed:api:82")
|
|
}
|