mirror of
https://github.com/inotia00/revanced-patches.git
synced 2025-04-29 14:14:36 +02:00
34 lines
627 B
Plaintext
34 lines
627 B
Plaintext
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.collections4)
|
|
implementation(libs.lang3)
|
|
|
|
compileOnly(project(":extensions:shared:stub"))
|
|
}
|