1
0
Fork 0
phizclip-android-demo/build.gradle

35 lines
845 B
Groovy
Raw Normal View History

2020-03-07 20:26:34 +08:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.0'
2020-09-03 11:49:35 +08:00
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.61"
2020-03-07 20:26:34 +08:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
maven {
url "https://gradle.finogeeks.club/repository/applet/"
credentials {
username "applet"
password "123321"
}
}
maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
2020-09-03 11:49:35 +08:00
}