-
Notifications
You must be signed in to change notification settings - Fork 889
/
build.gradle
executable file
·68 lines (47 loc) · 1.53 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
ext{
compileSdkVersion = 24
buildToolsVersion = '23.0.3'
group = 'org.eclipse.paho'
sampleArchivesBaseName = 'org.eclipse.paho.android.sample'
sampleVersion = '1.1.1'
serviceArchivesBaseName = 'org.eclipse.paho.android.service'
serviceVersion = '1.1.1'
clientVersion = '1.1.0'
mavenUrl = "https://repo.eclipse.org/content/repositories/paho-releases/"
supportLibVersion = '24.2.1'
}
def getSdkDirFromLocalProperties() {
def rootDir = project.rootDir
def localProperties = new File(rootDir, "local.properties")
Properties properties = new Properties()
localProperties.withInputStream { instr ->
properties.load(instr)
}
properties.getProperty('sdk.dir')
}
def androidHome = System.env['ANDROID_HOME']
def androidHomeIsDefined = androidHome?.trim()
def sdkDir = androidHomeIsDefined ? androidHome : getSdkDirFromLocalProperties()
println "SDK dir: $sdkDir"
allprojects {
repositories {
jcenter()
maven {
url "file://$sdkDir/extras/android/m2repository/"
}
}
version = rootProject.ext.serviceVersion
group = rootProject.ext.group
}