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.
30 lines
1014 B
30 lines
1014 B
10 months ago
|
buildscript {
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
google()
|
||
|
maven { url 'https://oss.sonatype.org/content/groups/public/' }
|
||
|
maven { url 'https://developer.huawei.com/repo/' }
|
||
|
maven { url "https://jitpack.io" }
|
||
|
}
|
||
|
dependencies {
|
||
|
// classpath Libs.ButterKnife.plugin
|
||
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.20"
|
||
|
classpath "com.android.tools.build:gradle:7.3.1"
|
||
|
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.0'
|
||
|
|
||
|
// classpath 'com.android.tools.build:gradle:7.4.2'
|
||
|
// classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.10'
|
||
|
}
|
||
|
}
|
||
|
|
||
|
allprojects {
|
||
|
repositories {
|
||
|
flatDir { dirs 'libs' }
|
||
|
mavenCentral()
|
||
|
google()
|
||
|
maven { url 'https://jitpack.io' }
|
||
|
maven { url 'https://oss.sonatype.org/content/groups/public/' }
|
||
|
maven { url 'https://developer.huawei.com/repo/' }
|
||
|
maven { url 'https://maven.aliyun.com/nexus/content/groups/public/' }
|
||
|
}
|
||
|
}
|