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
53
53
``` groovy
54
54
dependencies {
55
55
// 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 '
57
57
58
58
// 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 '
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-4 '
62
+ annotationProcessor 'org.neotech.library:android-retainable-tasks-compiler:1.0.0-rc-5 '
63
63
}
64
64
```
65
65
Original file line number Diff line number Diff line change @@ -13,7 +13,8 @@ version = VERSION_NAME
13
13
dependencies {
14
14
implementation fileTree(include : [' *.jar' ], dir : ' libs' )
15
15
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')
17
18
18
19
// Java Poet to create Java source files
19
20
implementation ' com.squareup:javapoet:1.9.0'
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-4
21
+ VERSION_NAME =1.0.0-rc-5
22
22
23
23
BINTRAY_REPO =maven
24
24
BINTRAY_LICENCE =Apache-2.0
Original file line number Diff line number Diff line change @@ -23,8 +23,9 @@ android {
23
23
}
24
24
buildTypes {
25
25
release {
26
+ consumerProguardFiles ' proguard-rules.pro'
26
27
minifyEnabled false
27
- proguardFiles getDefaultProguardFile( ' proguard-android.txt ' ), ' proguard-rules.pro '
28
+ useProguard true
28
29
}
29
30
}
30
31
}
@@ -36,7 +37,9 @@ configurations {
36
37
dependencies {
37
38
implementation fileTree(include : [' *.jar' ], dir : ' libs' )
38
39
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
+
40
43
implementation ' com.android.support:appcompat-v7:27.0.2'
41
44
javadoc ' com.android.support:appcompat-v7:27.0.2'
42
45
Original file line number Diff line number Diff line change 15
15
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
16
16
# public *;
17
17
#}
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