Skip to content
This repository has been archived by the owner on Mar 8, 2024. It is now read-only.

Troubleshooting

Alistair Sykes edited this page Jun 15, 2021 · 3 revisions

Troubleshooting

Android Support Library Version

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'
    }
}