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

31 lines
975 B

6 years ago
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.5.0'
6 years ago
repositories {
google()
maven { url 'https://maven.aliyun.com/repository/public/'}
4 years ago
maven { url "https://s3.amazonaws.com/fabric-artifacts/public" }
maven { url "https://maven.aliyun.com/repository/gradle-plugin" }
maven { url "https://plugins.gradle.org/m2/" }
6 years ago
}
dependencies {
classpath 'com.android.tools.build:gradle:4.2.0'
4 years ago
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
4 years ago
classpath "de.timfreiheit.resourceplaceholders:placeholders:0.3"
6 years ago
}
}
allprojects {
repositories {
google()
maven { url 'https://maven.aliyun.com/repository/public/'}
6 years ago
maven { url "https://jitpack.io" }
4 years ago
maven { url "https://maven.google.com/" }
6 years ago
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}