星油企业版本App
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.
 
 

44 lines
1.5 KiB

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.5.30'
repositories {
// maven { url 'http://maven.aliyun.com/nexus/content/repositories/google' }
// maven { url 'https://maven.aliyun.com/repository/public' }
maven { url 'http://maven.aliyun.com/nexus/content/repositories/jcenter'}
google()
// jcenter { url "http://jcenter.bintray.com/"}
mavenCentral()
maven { url "https://jitpack.io" }
maven { url 'https://dl.bintray.com/umsdk/release' }
}
dependencies {
classpath 'com.android.tools.build:gradle:4.2.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.30"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
// maven { url 'http://maven.aliyun.com/nexus/content/repositories/google' }
// maven { url 'https://maven.aliyun.com/repository/public' }
maven { url 'http://maven.aliyun.com/nexus/content/repositories/jcenter'}
google()
// jcenter { url "http://jcenter.bintray.com/"}
mavenCentral()
maven { url "https://jitpack.io" }
maven { url 'https://dl.bintray.com/umsdk/release' }
// 支付宝 SDK AAR 包所需的配置
flatDir {
dirs 'libs'
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}