-
Notifications
You must be signed in to change notification settings - Fork 66
/
build.gradle
76 lines (70 loc) · 1.76 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
String urlStr = "http://mvn.mob.com/android"
if (rootProject.hasProperty("mavenUrl")) {
urlStr = rootProject.ext.mavenUrl
}
println "mavenUrl: ${urlStr}"
ext {
mavenUrl = urlStr
}
repositories {
jcenter()
google()
maven {
url mavenUrl
}
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.2'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
// 注册MobSDK
classpath 'com.mob.sdk:MobSDK:+'
}
configurations.all {
resolutionStrategy.cacheDynamicVersionsFor 0, 'seconds'
}
}
allprojects {
repositories {
jcenter()
google()
maven {
url mavenUrl
}
}
configurations.all {
resolutionStrategy.cacheDynamicVersionsFor 0, 'seconds'
}
}
ext {
buildTool = findBuildTools()
}
task clean(type: Delete) {
delete rootProject.buildDir
}
String findBuildTools() {
def sdkDir = System.env.ANDROID_HOME;
if(sdkDir == null) {
def localProperties = new File(project.rootDir, "local.properties")
if (localProperties.exists()) {
Properties properties = new Properties()
localProperties.withInputStream {
instr->properties.load(instr)
}
sdkDir = properties.getProperty('sdk.dir')
}
}
if (sdkDir != null) {
def buildTools = new File(sdkDir, "build-tools")
if (buildTools.exists()) {
def tools = buildTools.list()
if (tools != null) {
Arrays.sort(tools)
return tools[tools.length - 1]
}
}
}
return null
}