-
Notifications
You must be signed in to change notification settings - Fork 6
/
build.gradle
26 lines (25 loc) · 1.1 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
maven { url "https://repo1.maven.org/maven2" }
maven { url "https://maven.aliyun.com/repository/central" }
maven { url "https://maven.aliyun.com/repository/google" }
maven { url "https://maven.aliyun.com/repository/public" }
maven { url "https://maven.aliyun.com/repository/gradle-plugin" }
maven { url "https://jitpack.io" }
// 配置HMS Core SDK的Maven仓地址。
maven { url 'https://developer.huawei.com/repo/' }
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.0.2'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.31'
classpath 'com.hujiang.aspectjx:gradle-android-plugin-aspectjx:2.0.10'
classpath 'com.huawei.agconnect:agcp:1.4.2.300'
classpath 'androidx.navigation:navigation-safe-args-gradle-plugin:2.3.5'
classpath "com.alibaba:arouter-register:1.0.2"
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}