Simple-Camera/build.gradle

26 lines
590 B
Groovy
Raw Normal View History

2016-04-12 22:35:40 +02:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
2017-06-14 22:37:10 +02:00
classpath 'com.android.tools.build:gradle:2.3.3'
2016-04-12 22:35:40 +02:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
2017-09-27 23:28:56 +02:00
maven { url 'https://jitpack.io' }
2017-10-19 21:50:16 +02:00
maven { url "https://maven.google.com" }
2016-04-12 22:35:40 +02:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}