mirror of
https://github.com/revanced/revanced-patches.git
synced 2025-04-30 14:44:33 +02:00
20 lines
442 B
Plaintext
20 lines
442 B
Plaintext
dependencies {
|
|
compileOnly(project(":extensions:shared:library"))
|
|
compileOnly(project(":extensions:twitch:stub"))
|
|
compileOnly(libs.okhttp)
|
|
compileOnly(libs.retrofit)
|
|
compileOnly(libs.annotation)
|
|
compileOnly(libs.appcompat)
|
|
}
|
|
|
|
android {
|
|
defaultConfig {
|
|
minSdk = 21
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
|
targetCompatibility = JavaVersion.VERSION_11
|
|
}
|
|
}
|