permissions-dispatcher / PermissionsDispatcher

A declarative API to handle Android runtime permissions.
https://github.com/permissions-dispatcher/PermissionsDispatcher
Apache License 2.0
11.21k stars 1.44k forks source link

hello, which version is better for Android support library rather than Androidx? #637

Closed cervy closed 4 years ago

cervy commented 4 years ago

Thanks

mannodermaus commented 4 years ago

We switched to using the AndroidX libraries in version 4.0.0. If you are required to still use the older Support Library artifacts, you can use 3.3.2. Note that the coordinates are different from the latest version, though:

dependencies {
  implementation("com.github.hotchemi:permissionsdispatcher:3.3.2") {
      // if you don't use android.app.Fragment you can exclude support for them
      exclude module: "support-v13"
  }
  annotationProcessor "com.github.hotchemi:permissionsdispatcher-processor:3.3.2"
}

For other questions about when a certain feature was introduced, feel free to check the changelog, too!

hotchemi commented 4 years ago

@mannodermaus danke!