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

40 lines
1.6 KiB

3 years ago
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
3 years ago
ext {
kotlin_version = '1.5.0'
}
3 years ago
repositories {
3 years ago
maven { url 'https://maven.aliyun.com/nexus/content/groups/public/' }
maven { url 'https://maven.aliyun.com/repository/google' }
maven { url 'https://maven.aliyun.com/repository/central' }
jcenter { url 'https://maven.aliyun.com/repository/jcenter' }
jcenter { url 'https://maven.aliyun.com/nexus/content/groups/public/' }
maven { url 'https://maven.aliyun.com/repository/gradle-plugin' }
maven { url 'https://repo1.maven.org/maven2/' }
3 years ago
maven { url 'https://jitpack.io' }
3 years ago
}
dependencies {
classpath "com.android.tools.build:gradle:4.2.0"
3 years ago
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
3 years ago
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
3 years ago
maven { url 'https://maven.aliyun.com/nexus/content/groups/public/' }
maven { url 'https://maven.aliyun.com/repository/google' }
maven { url 'https://maven.aliyun.com/repository/central' }
jcenter { url 'https://maven.aliyun.com/repository/jcenter' }
jcenter { url 'https://maven.aliyun.com/nexus/content/groups/public/' }
maven { url 'https://maven.aliyun.com/repository/gradle-plugin' }
maven { url 'https://repo1.maven.org/maven2/' }
3 years ago
maven { url 'https://jitpack.io' }
3 years ago
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}