mirror of
https://github.com/revanced/revanced-patches
synced 2024-12-04 08:43:01 +01:00
23 lines
386 B
Plaintext
23 lines
386 B
Plaintext
|
extension {
|
||
|
name = "extensions/shared.rve"
|
||
|
}
|
||
|
|
||
|
android {
|
||
|
namespace = "app.revanced.extension"
|
||
|
|
||
|
buildTypes {
|
||
|
release {
|
||
|
isMinifyEnabled = true
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
compileOnly(libs.appcompat)
|
||
|
compileOnly(libs.annotation)
|
||
|
compileOnly(libs.okhttp)
|
||
|
compileOnly(libs.retrofit)
|
||
|
|
||
|
compileOnly(project(":extensions:shared:stub"))
|
||
|
}
|