Permissionsdispatcher: hello, which version is better for Android support library rather than Androidx?

Created on 30 Aug 2019  ·  2Comments  ·  Source: permissions-dispatcher/PermissionsDispatcher

Thanks

Most helpful comment

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!

All 2 comments

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!

@mannodermaus danke!

Was this page helpful?
0 / 5 - 0 ratings