29 lines
487 B
Plaintext
29 lines
487 B
Plaintext
|
|
plugins {
|
||
|
|
id("com.android.library")
|
||
|
|
}
|
||
|
|
|
||
|
|
android {
|
||
|
|
namespace = "eightbitlab.com.blurview"
|
||
|
|
compileSdk = 35
|
||
|
|
|
||
|
|
defaultConfig {
|
||
|
|
minSdk = 18
|
||
|
|
targetSdk = 35
|
||
|
|
}
|
||
|
|
|
||
|
|
compileOptions {
|
||
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
||
|
|
targetCompatibility = JavaVersion.VERSION_11
|
||
|
|
}
|
||
|
|
|
||
|
|
buildTypes {
|
||
|
|
release {
|
||
|
|
isMinifyEnabled = false
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
dependencies {
|
||
|
|
implementation("androidx.annotation:annotation:1.9.1")
|
||
|
|
}
|