yayaa / LocationManager

Simplify getting user's location for Android
807 stars 187 forks source link

Unable to use it with 'com.google.android.gms:play-services-location:8.3.0' #2

Closed amankumarjain closed 8 years ago

amankumarjain commented 8 years ago

Is there any way to use without upgrading to 8.4?

yayaa commented 8 years ago

You can exclude play-services-location dependency and add it manually which version you want, but since you change the dependency version it may crash any point that i haven't seen in newer version. So test carefully.

 compile ('com.yayandroid:LocationManager:1.0.4') {
        exclude group: 'com.google.android.gms', module: 'play-services-location'
    }

    compile 'com.google.android.gms:play-services-location:8.3.0'