You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
plugins {
|
|
|
|
id("com.android.application")
|
|
|
|
id("kotlin-android")
|
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
setCompileSdkVersion(property("compileSdkVersion") as Int)
|
|
|
|
defaultConfig {
|
|
|
|
applicationId = "com.otaliastudios.cameraview.demo"
|
|
|
|
setMinSdkVersion(property("minSdkVersion") as Int)
|
|
|
|
setTargetSdkVersion(property("targetSdkVersion") as Int)
|
|
|
|
versionCode = 1
|
|
|
|
versionName = "1.0"
|
|
|
|
vectorDrawables.useSupportLibrary = true
|
|
|
|
}
|
|
|
|
sourceSets["main"].java.srcDir("src/main/kotlin")
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation(project(":cameraview"))
|
|
|
|
implementation("androidx.appcompat:appcompat:1.3.0")
|
|
|
|
implementation("com.google.android.material:material:1.4.0")
|
|
|
|
}
|