forked from eclipse-paho/paho.mqtt.android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
executable file
·84 lines (63 loc) · 2.18 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
77
78
79
80
81
82
83
84
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
mavenCentral()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.0.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
apply plugin: 'java-library'
ext{
compileSdkVersion = 24
buildToolsVersion = '23.0.3'
group = 'in.mohalla.paho'
sampleArchivesBaseName = 'in.mohalla.paho.android.sample'
sampleVersion = '1.1.1'
serviceArchivesBaseName = 'in.mohalla.paho.android.service'
serviceVersion = '1.1.1.9'
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"
apply from: './user.gradle'
allprojects {
repositories {
jcenter()
maven {
url "file://$sdkDir/extras/android/m2repository/"
}
google()
maven {
name = "ShareChatPackages"
url = uri("https://maven.pkg.github.com/ShareChat/paho.mqtt.java")
credentials {
username = System.getenv("GITHUB_USERNAME") ?: "${guser}"
password = System.getenv("GITHUB_PACKAGE_KEY") ?: "${gtoken}"
}
}
}
version = rootProject.ext.serviceVersion
group = rootProject.ext.group
ext.localProperties = new Properties()
localProperties.load(new FileInputStream(rootProject.file("local.properties")))
ext.guser = localProperties['GITHUB_USERNAME']
ext.gtoken = localProperties['GITHUB_PACKAGE_KEY']
}