first version
This commit is contained in:
50
app/build.gradle.kts
Normal file
50
app/build.gradle.kts
Normal file
@@ -0,0 +1,50 @@
|
||||
plugins {
|
||||
id("com.android.application")
|
||||
id("org.jetbrains.kotlin.android")
|
||||
}
|
||||
|
||||
android {
|
||||
compileSdk = 32
|
||||
|
||||
defaultConfig {
|
||||
applicationId = "pub.chara.disablealttab"
|
||||
minSdk = 30
|
||||
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")
|
||||
}
|
||||
Reference in New Issue
Block a user