mirror of
https://github.com/ReVanced/revanced-patches.git
synced 2025-05-16 22:34:07 +02:00
Co-authored-by: Nuckyz <61953774+Nuckyz@users.noreply.github.com> Co-authored-by: Brosssh <tiabroch@gmail.com>
17 lines
319 B
Kotlin
17 lines
319 B
Kotlin
plugins {
|
|
id(libs.plugins.android.library.get().pluginId)
|
|
}
|
|
|
|
android {
|
|
namespace = "app.revanced.extension"
|
|
compileSdk = 34
|
|
|
|
defaultConfig {
|
|
minSdk = 26
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
}
|
|
}
|