-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathbuild.gradle
More file actions
executable file
·78 lines (71 loc) · 1.88 KB
/
build.gradle
File metadata and controls
executable file
·78 lines (71 loc) · 1.88 KB
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
77
78
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
String urlStr = "http://mvn.mob.com/android"
println "mavenUrl: ${urlStr}"
ext {
mavenUrlExt = urlStr
}
repositories {
maven {
allowInsecureProtocol true
url mavenUrlExt
}
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.0.1'
// 注册MobSDK
classpath 'com.mob.sdk:MobSDK:+'
// 注册google services 用于集成FCM,不集成FCM可不配置
classpath 'com.google.gms:google-services:4.3.10'
}
configurations.all {
resolutionStrategy.cacheDynamicVersionsFor 0, 'seconds'
}
}
allprojects {
repositories {
jcenter()
google()
maven {
allowInsecureProtocol true
url mavenUrlExt
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext{
compileSdkVersion = 28
buildToolsVersion = findBuildTools()
minSdkVersion = 19
targetSdkVersion = 28
versionCode = 1
versionName = "1.0.0"
}
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 "25.0.1"
}