forked from tbruyelle/RxPermissions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
59 lines (49 loc) · 1.87 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
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.3'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.0'
}
}
allprojects {
repositories {
google()
jcenter()
}
}
ext {
minSdkVersion = 11
compileSdkVersion = 27
targetSdkVersion = compileSdkVersion
rxJava = 'io.reactivex.rxjava2:rxjava:2.1.16'
supportLibraryVersion = '27.1.1'
appCompat = "com.android.support:appcompat-v7:$supportLibraryVersion"
supportAnnotations = "com.android.support:support-annotations:$supportLibraryVersion"
supportFragment = "com.android.support:support-fragment:$supportLibraryVersion"
junit = 'junit:junit:4.12'
mockito = 'org.mockito:mockito-core:1.10.19'
robolectricVersion = '3.3.2'
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 = 'thomas.bruyelle@gmail.com'
licenseName = 'The Apache Software License, Version 2.0'
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
allLicenses = ["Apache-2.0"]
}