forked from PlatONnetwork/ATON-Android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
32 lines (28 loc) · 1.05 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
apply from: "dependencies.gradle"
buildscript {
repositories {
google()
jcenter()
maven { url 'https://dl.bintray.com/umsdk/release' }
}
dependencies {
classpath 'com.android.tools.build:gradle:3.4.0'
classpath 'io.realm:realm-gradle-plugin:5.8.0'
// 配置自动上传符号表插件,注:为了能快速并准确地定位用户APP发生Crash的代码位置,Bugly使用符号表对APP发生Crash的程序堆栈进行解析和还原
classpath 'com.tencent.bugly:symtabfileuploader:latest.release'
}
}
allprojects {
repositories {
google()
jcenter()
maven{url "http://192.168.9.39:8081/repository/maven-releases/"}
// maven { url "https://sdk.platon.network/nexus/content/groups/public/" }
maven { url 'https://dl.bintray.com/umsdk/release' }
maven { url 'https://jitpack.io' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}