-
-
Notifications
You must be signed in to change notification settings - Fork 72
/
build.gradle
52 lines (38 loc) · 1.32 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
apply plugin: 'com.android.library'
android {
compileSdkVersion project.COMPILE_SDK
defaultConfig {
minSdkVersion project.MIN_SDK
targetSdkVersion project.TARGET_SDK
versionCode 1
versionName "1.0"
}
dexOptions {
preDexLibraries = false
}
}
dependencies {
api project(':runtime-permission')
implementation 'androidx.fragment:fragment:1.0.0'
implementation "io.reactivex.rxjava2:rxjava:2.2.2"
}
ext {
bintrayRepo = 'maven'
bintrayName = rootProject.ext.libraryName+'-rx'
orgName = 'florent37'
publishedGroupId = rootProject.ext.libraryGroup
libraryName = rootProject.ext.libraryDescription+' Rx'
artifact = rootProject.ext.libraryName+'-rx'
libraryDescription = rootProject.ext.libraryDescription+' Rx'
siteUrl = rootProject.ext.github
gitUrl = rootProject.ext.github+'.git'
libraryVersion = rootProject.ext.libraryVersion
developerId = 'florent37'
developerName = 'Florent Champigny'
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"]
}
apply from: rootProject.file('gradle/install-v1.gradle')
apply from: rootProject.file('gradle/bintray-android-v1.gradle')