This repository has been archived by the owner on Feb 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
build.gradle
59 lines (48 loc) · 1.77 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:4.0.0'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.0'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
}
}
allprojects {
repositories {
google()
jcenter()
}
}
ext {
minSdkVersion = 14
compileSdkVersion = 29
targetSdkVersion = compileSdkVersion
rxJava = 'io.reactivex.rxjava3:rxjava:3.0.4'
junit = 'junit:junit:4.13'
mockito = 'org.mockito:mockito-core:3.3.3'
androidXFragment = 'androidx.fragment:fragment:1.2.5'
androidXAnnotation = 'androidx.annotation:annotation:1.1.0'
androidXAppcompat = 'androidx.appcompat:appcompat:1.1.0'
robolectricVersion = '4.3.1'
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 = 'RxPermissions3'
publishedGroupId = 'com.tbruyelle.rxpermissions3'
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"]
}