mirror of
https://github.com/revanced/revanced-patches
synced 2024-12-12 00:57:50 +01:00
18 lines
319 B
Plaintext
18 lines
319 B
Plaintext
plugins {
|
|
id(libs.plugins.android.library.get().pluginId)
|
|
}
|
|
|
|
android {
|
|
namespace = "app.revanced.extension"
|
|
compileSdk = 33
|
|
|
|
defaultConfig {
|
|
minSdk = 24
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
|
targetCompatibility = JavaVersion.VERSION_11
|
|
}
|
|
}
|