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.
22 lines
652 B
22 lines
652 B
4 years ago
|
plugins {
|
||
|
id("com.android.application")
|
||
|
}
|
||
|
|
||
|
android {
|
||
|
setCompileSdkVersion(rootProject.property("compileSdkVersion") as Int)
|
||
|
defaultConfig {
|
||
|
applicationId = "com.otaliastudios.cameraview.demo"
|
||
|
setMinSdkVersion(rootProject.property("minSdkVersion") as Int)
|
||
|
setTargetSdkVersion(rootProject.property("targetSdkVersion") as Int)
|
||
|
versionCode = 1
|
||
|
versionName = "1.0"
|
||
|
vectorDrawables.useSupportLibrary = true
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation(project(":cameraview"))
|
||
|
implementation("androidx.appcompat:appcompat:1.1.0")
|
||
|
implementation("com.google.android.material:material:1.1.0")
|
||
|
}
|