@@ -4,6 +4,8 @@ apply plugin: 'com.github.dcendents.android-maven'
4
4
apply plugin : ' com.jfrog.bintray'
5
5
6
6
version = rotor_version
7
+ group = " com.rotor"
8
+
7
9
8
10
android {
9
11
compileSdkVersion 27
@@ -12,7 +14,7 @@ android {
12
14
minSdkVersion 21
13
15
targetSdkVersion 27
14
16
versionCode 1
15
- versionName version
17
+ versionName rotor_version
16
18
testInstrumentationRunner " android.support.test.runner.AndroidJUnitRunner"
17
19
}
18
20
@@ -28,27 +30,32 @@ android {
28
30
dependencies {
29
31
implementation fileTree(dir : ' libs' , include : [' *.jar' ])
30
32
31
- implementation ' com.android.support:appcompat-v7:27.1.0 '
33
+ implementation ' com.android.support:appcompat-v7:27.1.1 '
32
34
testImplementation ' junit:junit:4.12'
33
35
androidTestImplementation ' com.android.support.test:runner:1.0.1'
34
36
androidTestImplementation ' com.android.support.test.espresso:espresso-core:3.0.1'
35
37
36
- implementation " com.android.support:support-compat:27.1.0"
37
- compile " org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version "
38
- // compile project(":core")
39
- // compile project(":database")
40
- implementation ' com.rotor:core:0.1.1@aar'
41
- compile (' com.rotor:database:0.1.1@aar' ) {
38
+ implementation " com.android.support:support-compat:27.1.1"
39
+ implementation " org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version "
40
+ // implementation project(":core")
41
+ // implementation project(":database")
42
+
43
+ implementation (' com.rotor:core:0.2@aar' ) {
44
+ transitive = true
45
+ }
46
+ implementation (' com.rotor:database:0.2@aar' ) {
42
47
transitive = true
43
48
}
44
- compile ' com.google.code.gson:gson:2.8.2'
45
- compile ' com.nostra13.universalimageloader:universal-image-loader:1.9.5'
46
- compile " com.stringcare:library:0.7"
47
-
48
- compile " com.squareup.retrofit2:retrofit:2.3.0"
49
- compile " com.squareup.retrofit2:adapter-rxjava2:2.3.0"
50
- compile " com.squareup.retrofit2:converter-gson:2.3.0"
51
- compile " io.reactivex.rxjava2:rxandroid:2.0.2"
49
+ implementation ' com.google.code.gson:gson:2.8.2'
50
+ implementation ' com.nostra13.universalimageloader:universal-image-loader:1.9.5'
51
+ implementation " com.stringcare:library:0.7"
52
+
53
+ implementation ' org.apache.commons:commons-lang3:3.6'
54
+
55
+ implementation " com.squareup.retrofit2:retrofit:2.3.0"
56
+ implementation " com.squareup.retrofit2:adapter-rxjava2:2.3.0"
57
+ implementation " com.squareup.retrofit2:converter-gson:2.3.0"
58
+ implementation " io.reactivex.rxjava2:rxandroid:2.0.2"
52
59
}
53
60
54
61
repositories {
@@ -58,15 +65,13 @@ repositories {
58
65
def siteUrl = ' https://github.com/rotorlab/notifications-kotlin'
59
66
def gitUrl = ' https://github.com/rotorlab/notifications-kotlin.git'
60
67
61
- group = " com.rotor"
62
-
63
68
install {
64
69
repositories. mavenInstaller {
65
70
// This generates POM.xml with proper parameters
66
71
pom {
67
72
project {
68
73
packaging ' aar'
69
- name ' Database module for Rotor client (kotlin)'
74
+ name ' Notifications module for Rotor client (kotlin)'
70
75
url siteUrl
71
76
// Set your license
72
77
licenses {
0 commit comments