2024-12-07 22:13:39 +09:00

31 lines
558 B
Plaintext

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"))
}