plugins { id("com.android.application") id("org.jetbrains.kotlin.android") } android { namespace = "space.bdeshi.veil" compileSdk = 35 defaultConfig { applicationId = "space.bdeshi.veil" minSdk = 27 targetSdk = 35 versionCode = 1 versionName = "1.0" } buildTypes { release { isMinifyEnabled = false } } compileOptions { sourceCompatibility = JavaVersion.VERSION_17 targetCompatibility = JavaVersion.VERSION_17 } kotlinOptions { jvmTarget = "17" } } dependencies { compileOnly("de.robv.android.xposed:api:82") implementation("androidx.appcompat:appcompat:1.7.0") implementation("com.google.android.material:material:1.12.0") }