This repository was archived by the owner on Dec 17, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +13
-12
lines changed Expand file tree Collapse file tree 6 files changed +13
-12
lines changed Original file line number Diff line number Diff line change @@ -53,13 +53,13 @@ Android-Retainable-Tasks is available on jcenter just like many other Android/Ja
53
53
``` groovy
54
54
dependencies {
55
55
// Gradle < 3.0
56
- compile 'org.neotech.library:android-retainable-tasks:1.0.0-rc-3 '
56
+ compile 'org.neotech.library:android-retainable-tasks:1.0.0-rc-4 '
57
57
58
58
// Gradle >= 3.0
59
- implementation 'org.neotech.library:android-retainable-tasks:1.0.0-rc-3 '
59
+ implementation 'org.neotech.library:android-retainable-tasks:1.0.0-rc-4 '
60
60
61
61
// Needed if you want to use annotations (all Gradle versions)
62
- annotationProcessor 'org.neotech.library:android-retainable-tasks-compiler:1.0.0-rc-3 '
62
+ annotationProcessor 'org.neotech.library:android-retainable-tasks-compiler:1.0.0-rc-4 '
63
63
}
64
64
```
65
65
Original file line number Diff line number Diff line change @@ -12,7 +12,8 @@ version = VERSION_NAME
12
12
13
13
dependencies {
14
14
implementation fileTree(include : [' *.jar' ], dir : ' libs' )
15
- implementation project(' :annotations' )
15
+
16
+ implementation ' org.neotech.library:android-retainable-tasks-annotations:1.0.0-rc-4'
16
17
17
18
// Java Poet to create Java source files
18
19
implementation ' com.squareup:javapoet:1.9.0'
Original file line number Diff line number Diff line change @@ -6,13 +6,13 @@ buildscript {
6
6
google()
7
7
}
8
8
dependencies {
9
- classpath ' com.android.tools.build:gradle:3.0.0 '
9
+ classpath ' com.android.tools.build:gradle:3.0.1 '
10
10
11
11
// Bintray
12
12
classpath ' com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
13
13
14
14
// Maven for Android projects
15
- classpath ' com.github.dcendents:android-maven-gradle-plugin:1.5 '
15
+ classpath ' com.github.dcendents:android-maven-gradle-plugin:2.0 '
16
16
// NOTE: Do not place your application dependencies here; they belong
17
17
// in the individual module build.gradle files
18
18
}
Original file line number Diff line number Diff line change @@ -23,8 +23,8 @@ dependencies {
23
23
implementation project(' :library' )
24
24
annotationProcessor project(" :annotations-processor" )
25
25
26
- implementation ' com.android.support:appcompat-v7:27.0.1 '
27
- implementation ' com.android.support:design:27.0.1 '
26
+ implementation ' com.android.support:appcompat-v7:27.0.2 '
27
+ implementation ' com.android.support:design:27.0.2 '
28
28
29
29
// LeakCanary is used to detect memory leaks in debug builds.
30
30
debugImplementation ' com.squareup.leakcanary:leakcanary-android:1.5.4'
Original file line number Diff line number Diff line change 18
18
# org.gradle.parallel=true
19
19
20
20
GROUP =org.neotech.library
21
- VERSION_NAME =1.0.0-rc-3
21
+ VERSION_NAME =1.0.0-rc-4
22
22
23
23
BINTRAY_REPO =maven
24
24
BINTRAY_LICENCE =Apache-2.0
Original file line number Diff line number Diff line change @@ -36,9 +36,9 @@ configurations {
36
36
dependencies {
37
37
implementation fileTree(include : [' *.jar' ], dir : ' libs' )
38
38
39
- api project( ' : annotations' )
40
- implementation ' com.android.support:appcompat-v7:27.0.1 '
41
- javadoc ' com.android.support:appcompat-v7:27.0.1 '
39
+ api ' org.neotech.library:android-retainable-tasks- annotations:1.0.0-rc-4 '
40
+ implementation ' com.android.support:appcompat-v7:27.0.2 '
41
+ javadoc ' com.android.support:appcompat-v7:27.0.2 '
42
42
43
43
testImplementation ' junit:junit:4.12'
44
44
}
You can’t perform that action at this time.
0 commit comments