Closed neegbeah closed 6 years ago
Actually that specific version of play-services-location
is not needed unless you are also including a conflicting library version. Gradle will pull in the transitive dependencies of react-native-radar automatically.
We'll keep in mind build errors with conflicting versions and add a note in the future. Sorry for the inconvenience here.
I was trying to integrate the SDK into my React Native project. I was having fatal errors on the Android Application
Then find out you need to add the following dependencies on the
app
module. Note the documentation suggests adding Google Play Services but just adding that alone will produce the same error:compile 'com.google.android.gms:play-services-maps:16.0.0'
compile 'com.google.android.gms:play-services-location:16.0.0'
Probably need to add this on the SDK Documentation. This will make newcomers for React Native pretty inconvenient to setup.