111/blurview/build.gradle.kts

29 lines
487 B
Plaintext
Raw Permalink Normal View History

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")
}