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.
 
 
CameraView/build.gradle.kts

32 lines
580 B

buildscript {
extra["minSdkVersion"] = 15
extra["compileSdkVersion"] = 30
extra["targetSdkVersion"] = 30
repositories {
google()
mavenCentral()
jcenter()
}
dependencies {
classpath("com.android.tools.build:gradle:4.1.2")
classpath("io.deepmedia.tools:publisher:0.4.1")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.21")
}
}
allprojects {
repositories {
google()
mavenCentral()
jcenter()
}
}
tasks.register("clean", Delete::class) {
delete(buildDir)
}