This repository was archived by the owner on Dec 17, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +13
-7
lines changed Expand file tree Collapse file tree 5 files changed +13
-7
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
5353``` groovy
5454dependencies {
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
Original file line number Diff line number Diff line change @@ -13,7 +13,8 @@ version = VERSION_NAME
1313dependencies {
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'
Original file line number Diff line number Diff line change 1818# org.gradle.parallel=true
1919
2020GROUP =org.neotech.library
21- VERSION_NAME =1.0.0-rc-4
21+ VERSION_NAME =1.0.0-rc-5
2222
2323BINTRAY_REPO =maven
2424BINTRAY_LICENCE =Apache-2.0
Original file line number Diff line number Diff 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 {
3637dependencies {
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
Original file line number Diff line number Diff line change 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>(...); }
You can’t perform that action at this time.
0 commit comments