forked from tbruyelle/RxPermissions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
57 lines (47 loc) · 1.79 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
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.0'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
}
}
subprojects {
repositories {
jcenter()
}
}
ext {
minSdkVersion = 11
compileSdkVersion = 25
targetSdkVersion = compileSdkVersion
buildToolsVersion = '25.0.2'
rxJava = 'io.reactivex.rxjava2:rxjava:2.1.8'
supportLibraryVersion = '25.2.0'
appCompat = "com.android.support:appcompat-v7:$supportLibraryVersion"
supportAnnotations = "com.android.support:support-annotations:$supportLibraryVersion"
junit = 'junit:junit:4.12'
mockito = 'org.mockito:mockito-core:1.10.19'
robolectricVersion = '3.1.4'
robolectric = "org.robolectric:robolectric:$robolectricVersion"
robolectricShadowsSupport = "org.robolectric:shadows-support-v4:$robolectricVersion"
// Workaround for https://github.com/robolectric/robolectric/issues/1932
khronosOpenGLApi = "org.khronos:opengl-api:gl1.1-android-2.1_r1"
bintrayRepo = 'tbruyelle'
bintrayName = 'RxPermissions2'
publishedGroupId = 'com.tbruyelle.rxpermissions2'
artifact = 'rxpermissions'
libraryName = 'RxPermissions'
libraryVersion = '0.9.5'
libraryDescription = 'A wrapper for Android 6.0 permissions'
siteUrl = 'https://github.com/tbruyelle/RxPermissions'
gitUrl = 'https://github.com/tbruyelle/RxPermissions.git'
developerId = 'tbruyelle'
developerName = 'Thomas Bruyelle'
developerEmail = '[email protected]'
licenseName = 'The Apache Software License, Version 2.0'
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
allLicenses = ["Apache-2.0"]
}