Skip to content

Commit

Permalink
Release 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
AleksanderMielczarek committed Aug 3, 2017
1 parent 4f033cd commit d325d51
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ dependencies {
annotationProcessor 'com.github.hotchemi:permissionsdispatcher-processor:2.4.0'
compile 'org.androidannotations:androidannotations-api:4.3.1'
annotationProcessor 'org.androidannotations:androidannotations:4.3.1'
annotationProcessor 'com.github.AleksanderMielczarek:AndroidAnnotationsPermissionsDispatcherPlugin:2.0.0'
annotationProcessor 'com.github.AleksanderMielczarek:AndroidAnnotationsPermissionsDispatcherPlugin:2.0.1'
}
```

Expand Down Expand Up @@ -64,7 +64,7 @@ public class MainActivity extends AppCompatActivity {
}
```

# Migrating to 2.0.0
# Migrating to 2.x.x

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

## Changelog

### 2.0.1 (2017-08-03)

- fix not compiling code when AA is running first (#7)

### 2.0.0 (2017-07-12)

- fully integration with PermissionsDispatcher
Expand Down
2 changes: 1 addition & 1 deletion dependencies.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ext {
versionMajor = 2
versionMinor = 0
versionFix = 0
versionFix = 1

minSdkVersionVersion = 16
sdkVersion = 26
Expand Down

0 comments on commit d325d51

Please sign in to comment.