prolificinteractive / geocoder

This is a device independent and plugable replacement for Android's builtin Geocoder.
MIT License
6 stars 1 forks source link

conflicting dependencies Error #7

Open AustineGwa opened 3 years ago

AustineGwa commented 3 years ago

Following the read me as is leads to an error conflicting dependency Please update the readme on how to deal with it image

luis901101 commented 3 years ago

You must include this dependencies in your app level build.gradle

    implementation 'com.github.prolificinteractive.geocoder:geocoder:0.1.0'
    // For Geocoder and Google Maps
    implementation 'com.github.prolificinteractive.geocoder:geocoder-googlemaps:0.1.0'
    // For Geocoder and OkHttp
    implementation 'com.github.prolificinteractive.geocoder:geocoder-okhttp:0.1.0'
    // For Geocoder and Open Street Maps
    implementation 'com.github.prolificinteractive.geocoder:geocoder-openstreetmap:0.1.0'
    implementation 'io.reactivex.rxjava2:rxjava:2.1.14'
    implementation 'io.reactivex.rxjava2:rxandroid:2.0.2'
    implementation 'com.squareup.okhttp3:okhttp:3.10.0'