import java.lang.Boolean.TRUE extension { name = "extensions/shared.rve" } android { namespace = "app.revanced.extension" compileSdk = 34 defaultConfig { minSdk = 24 } buildTypes { release { isMinifyEnabled = TRUE } } compileOptions { sourceCompatibility = JavaVersion.VERSION_17 targetCompatibility = JavaVersion.VERSION_17 } } dependencies { compileOnly(libs.annotation) compileOnly(libs.preference) implementation(libs.lang3) compileOnly(project(":extensions:shared:stub")) }