Skip to content

Commit d325d51

Browse files
Release 2.0.1
1 parent 4f033cd commit d325d51

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ dependencies {
2727
annotationProcessor 'com.github.hotchemi:permissionsdispatcher-processor:2.4.0'
2828
compile 'org.androidannotations:androidannotations-api:4.3.1'
2929
annotationProcessor 'org.androidannotations:androidannotations:4.3.1'
30-
annotationProcessor 'com.github.AleksanderMielczarek:AndroidAnnotationsPermissionsDispatcherPlugin:2.0.0'
30+
annotationProcessor 'com.github.AleksanderMielczarek:AndroidAnnotationsPermissionsDispatcherPlugin:2.0.1'
3131
}
3232
```
3333

@@ -64,7 +64,7 @@ public class MainActivity extends AppCompatActivity {
6464
}
6565
```
6666

67-
# Migrating to 2.0.0
67+
# Migrating to 2.x.x
6868

6969
Finally, you should not call the PermissionsDispatcher delegate class static methods anymore, this
7070
plugin will generate those calls for you. Just call the method which was annotated with `@NeedsPermission`. Overriding `onRequestPermissionsResult` should also be removed completely.
@@ -76,6 +76,10 @@ See the example project for code.
7676

7777
## Changelog
7878

79+
### 2.0.1 (2017-08-03)
80+
81+
- fix not compiling code when AA is running first (#7)
82+
7983
### 2.0.0 (2017-07-12)
8084

8185
- fully integration with PermissionsDispatcher

dependencies.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ext {
22
versionMajor = 2
33
versionMinor = 0
4-
versionFix = 0
4+
versionFix = 1
55

66
minSdkVersionVersion = 16
77
sdkVersion = 26

0 commit comments

Comments
 (0)