Co-authored-by: oSumAtrIX <johan.melkonyan1@web.de> Co-authored-by: inotia00 <108592928+inotia00@users.noreply.github.com>
24 lines
527 B
Kotlin
24 lines
527 B
Kotlin
plugins {
|
|
alias(libs.plugins.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)
|
|
compileOnly(libs.okhttp)
|
|
compileOnly(libs.protobuf.javalite)
|
|
implementation(project(":extensions:shared:protobuf", configuration = "shadowRuntimeElements"))
|
|
}
|