mirror of
https://github.com/revanced/revanced-patches
synced 2024-12-28 03:05:49 +01:00
22 lines
348 B
Plaintext
22 lines
348 B
Plaintext
|
plugins {
|
||
|
id("com.android.library")
|
||
|
}
|
||
|
|
||
|
android {
|
||
|
namespace = "app.revanced.extension"
|
||
|
compileSdk = 34
|
||
|
|
||
|
defaultConfig {
|
||
|
minSdk = 23
|
||
|
}
|
||
|
|
||
|
compileOptions {
|
||
|
sourceCompatibility = JavaVersion.VERSION_17
|
||
|
targetCompatibility = JavaVersion.VERSION_17
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
compileOnly(libs.annotation)
|
||
|
}
|