mirror of
https://github.com/revanced/revanced-integrations.git
synced 2024-11-07 12:47:02 +01:00
993aadd4df
Signed-off-by: oSumAtrIX <johan.melkonyan1@web.de>
28 lines
586 B
Plaintext
28 lines
586 B
Plaintext
plugins {
|
|
id("com.android.library")
|
|
}
|
|
|
|
android {
|
|
namespace = "app.revanced.dummy"
|
|
compileSdk = 33
|
|
buildToolsVersion = "33.0.1"
|
|
|
|
defaultConfig {
|
|
minSdk = 23
|
|
targetSdk = 33
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
isMinifyEnabled = false
|
|
proguardFiles(
|
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
|
"proguard-rules.pro"
|
|
)
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
|
targetCompatibility = JavaVersion.VERSION_11
|
|
}
|
|
} |