This repository has been archived by the owner on Mar 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Troubleshooting
Alistair Sykes edited this page Jun 15, 2021
·
3 revisions
Affects library versions pre 1.3.0
If you are using AndroidX dependencies, this shouldn't cause an issue. If you have dependency on com.android.support
, then you may experience a conflict. The library depends on com.google.firebase:firebase-ml-vision
, which in turn has dependencies on com.android.support
. You should be able to safely ignore this warning, and the dependency conflict will resolve itself at build time. You can also manually resolve the conflict, for example:
android {
// ...
configurations.all {
resolutionStrategy.force 'com.android.support:appcompat-v7:$version'
}
}
Please do raise issues for suggesting improvements to this wiki.