Skip to content

Commit

Permalink
Fix buiild.gradle after react-native-push-notification adding
Browse files Browse the repository at this point in the history
  • Loading branch information
davidyuk committed Jul 15, 2017
1 parent 8efaaff commit 90755ad
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,12 @@ android {
dependencies {
compile project(':react-native-push-notification')
compile project(':react-native-background-timer')
compile project(':react-native-maps')
compile(project(':react-native-maps')) {
exclude group: 'com.google.android.gms', module: 'play-services-base'
exclude group: 'com.google.android.gms', module: 'play-services-maps'
}
compile 'com.google.android.gms:play-services-base:11.+'
compile 'com.google.android.gms:play-services-maps:11.+'
compile fileTree(dir: "libs", include: ["*.jar"])
compile "com.android.support:appcompat-v7:23.0.1"
compile "com.facebook.react:react-native:+" // From node_modules
Expand Down

0 comments on commit 90755ad

Please sign in to comment.