forked from QuickBlox/quickblox-android-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
49 lines (38 loc) · 876 Bytes
/
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
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.3.0'
}
}
allprojects {
repositories {
maven {
url "https://github.com/QuickBlox/quickblox-android-sdk-releases/raw/master/"
}
mavenCentral()
}
}
// QuickBlox SDK version
//
ext.qbSdkVersion = '2.5'
//
//
ext.compileSdkVersion = 23
ext.buildToolsVersion = "23.0.1"
ext.minSdkVersion = 14
ext.targetSdkVersion = 23
ext.appCompatVersion = "23.1.1"
ext.androidSupportVersion = "23.1.0"
ext.playServiceVersion = "7.0.0"
ext.playServiceGCMVersion = "8.3.0"
ext.sourceCompatibility = JavaVersion.VERSION_1_7
ext.targetCompatibility = JavaVersion.VERSION_1_7
ext.lintAbortOnError = false
task wrapper(type: Wrapper) {
gradleVersion = '2.4'
}
def makeJar(variant, project) {
//empty
}