Thanks
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!
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 use3.3.2. Note that the coordinates are different from the latest version, though:For other questions about when a certain feature was introduced, feel free to check the changelog, too!