Skip to content
This repository was archived by the owner on Dec 17, 2020. It is now read-only.

Commit aaded98

Browse files
committed
Updated version to release candidate 1, fixed documentation
1 parent 311e05b commit aaded98

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public class Main extends TaskActivityCompat {
2424
@Override
2525
public void onClick(View view){
2626
if (!getTaskManager().isActive("task-id")) {
27-
getTaskManager().execute(new ExampleTask("task-id"), this);
27+
getTaskManager().execute(new ExampleTask("task-id"));
2828
}
2929
}
3030

@@ -53,10 +53,10 @@ Android-Retainable-Tasks is available on jcenter just like many other Android/Ja
5353
```groovy
5454
dependencies {
5555
// The library dependency
56-
compile 'org.neotech.library:android-retainable-tasks:1.0.0-alpha-1'
56+
compile 'org.neotech.library:android-retainable-tasks:1.0.0-rc-1'
5757
5858
// Needed if you want to use annotations
59-
annotationProcessor 'org.neotech.library:android-retainable-tasks-compiler:1.0.0-alpha-1'
59+
annotationProcessor 'org.neotech.library:android-retainable-tasks-compiler:1.0.0-rc-1'
6060
}
6161
```
6262

demo/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ dependencies {
2323
compile project(':library')
2424
compile project(":annotations")
2525
annotationProcessor project(":annotations-processor")
26-
//compile 'org.neotech.library:android-retainable-tasks:1.0.0-alpha-1'
26+
//compile 'org.neotech.library:android-retainable-tasks:1.0.0-rc-1'
2727

2828
compile 'com.android.support:appcompat-v7:25.3.1'
2929
compile 'com.android.support:design:25.3.1'

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# org.gradle.parallel=true
1919

2020
GROUP=org.neotech.library
21-
VERSION_NAME=1.0.0-alpha-1
21+
VERSION_NAME=1.0.0-rc-1
2222

2323
BINTRAY_REPO=maven
2424
BINTRAY_LICENCE=Apache-2.0

0 commit comments

Comments
 (0)