-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
44 lines (37 loc) · 1.46 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
apply from: './buildSrc/build_version.gradle'
buildscript {
repositories {
maven { url 'https://maven.aliyun.com/nexus/content/groups/public/' }
google()
jcenter()
mavenCentral()
maven { url "https://jitpack.io" }
maven { url 'https://jcenter.bintray.com/umsdk/release' }
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
}
dependencies {
classpath 'com.android.tools.build:gradle:7.3.1'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.10'
//Gradle Android Maven plugin
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
//This plugin is available from Bintray's JCenter repository and from the Gradle Plugin Portal
classpath "com.github.ben-manes:gradle-versions-plugin:0.44.0"
classpath "com.google.dagger:hilt-android-gradle-plugin:2.46"
classpath "io.github.wurensen:gradle-android-plugin-aspectjx:3.3.2"
classpath "com.vanniktech:gradle-dependency-graph-generator-plugin:0.9.0-SNAPSHOT"
}
}
apply plugin: "com.vanniktech.dependency.graph.generator"
allprojects {
repositories {
google()
jcenter()
mavenCentral()
maven { url "https://jitpack.io" }
maven { url 'https://maven.aliyun.com/nexus/content/groups/public/' }
maven { url 'https://jcenter.bintray.com/umsdk/release' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}