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

Commit 7dc4d48

Browse files
committed
Merge branch 'develop'
2 parents a9d0335 + cbb6456 commit 7dc4d48

File tree

5 files changed

+13
-7
lines changed

5 files changed

+13
-7
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,13 +53,13 @@ Android-Retainable-Tasks is available on jcenter just like many other Android/Ja
5353
```groovy
5454
dependencies {
5555
// Gradle < 3.0
56-
compile 'org.neotech.library:android-retainable-tasks:1.0.0-rc-4'
56+
compile 'org.neotech.library:android-retainable-tasks:1.0.0-rc-5'
5757
5858
// Gradle >= 3.0
59-
implementation 'org.neotech.library:android-retainable-tasks:1.0.0-rc-4'
59+
implementation 'org.neotech.library:android-retainable-tasks:1.0.0-rc-5'
6060
6161
// Needed if you want to use annotations (all Gradle versions)
62-
annotationProcessor 'org.neotech.library:android-retainable-tasks-compiler:1.0.0-rc-4'
62+
annotationProcessor 'org.neotech.library:android-retainable-tasks-compiler:1.0.0-rc-5'
6363
}
6464
```
6565

annotations-processor/build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ version = VERSION_NAME
1313
dependencies {
1414
implementation fileTree(include: ['*.jar'], dir: 'libs')
1515

16-
implementation 'org.neotech.library:android-retainable-tasks-annotations:1.0.0-rc-4'
16+
implementation 'org.neotech.library:android-retainable-tasks-annotations:1.0.0-rc-5'
17+
//implementation project(':annotations')
1718

1819
// Java Poet to create Java source files
1920
implementation 'com.squareup:javapoet:1.9.0'

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-rc-4
21+
VERSION_NAME=1.0.0-rc-5
2222

2323
BINTRAY_REPO=maven
2424
BINTRAY_LICENCE=Apache-2.0

library/build.gradle

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,9 @@ android {
2323
}
2424
buildTypes {
2525
release {
26+
consumerProguardFiles 'proguard-rules.pro'
2627
minifyEnabled false
27-
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
28+
useProguard true
2829
}
2930
}
3031
}
@@ -36,7 +37,9 @@ configurations {
3637
dependencies {
3738
implementation fileTree(include: ['*.jar'], dir: 'libs')
3839

39-
api 'org.neotech.library:android-retainable-tasks-annotations:1.0.0-rc-4'
40+
api 'org.neotech.library:android-retainable-tasks-annotations:1.0.0-rc-5'
41+
//api project(':annotations')
42+
4043
implementation 'com.android.support:appcompat-v7:27.0.2'
4144
javadoc 'com.android.support:appcompat-v7:27.0.2'
4245

library/proguard-rules.pro

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,5 @@
1515
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
1616
# public *;
1717
#}
18+
19+
-keep class * implements org.neotech.library.retainabletasks.internal.TaskAttachBinding { public <init>(...); }

0 commit comments

Comments
 (0)