Skip to content

Commit

Permalink
Update dependency to allow latest minor version
Browse files Browse the repository at this point in the history
`react-native-admob` has a conflict if used alongside my own `react-native-google-analytics-bridge` module. 
This is because it specifically tries to compile a previous version of the `play-services` dependency (8.3.0).

See [this issue](https://github.com/idehub/react-native-google-analytics-bridge/issues/31).

I've changed my own module to instead target `8.+` which means every latest minor version (8.x.x).
To avoid conflicts with mine, and other modules, I propose doing the same here.

Resolves: sbugert#15
  • Loading branch information
cbrevik committed May 12, 2016
1 parent d49ad20 commit 5358db3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ android {

dependencies {
compile 'com.facebook.react:react-native:0.19.+'
compile 'com.google.android.gms:play-services-ads:8.3.0'
compile 'com.google.android.gms:play-services-ads:8.+'
}

0 comments on commit 5358db3

Please sign in to comment.