Skip to content

Instantly share code, notes, and snippets.

@blueberry404
Created July 12, 2018 21:18
Show Gist options
  • Save blueberry404/78f023d5b5c6d0b84136df849633d019 to your computer and use it in GitHub Desktop.
Save blueberry404/78f023d5b5c6d0b84136df849633d019 to your computer and use it in GitHub Desktop.
App Module build gradle for React Native Notifications
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.facebook.react:react-native:+'
//Add these lines
implementation "com.google.android.gms:play-services-base:15.0.0"
implementation "com.google.firebase:firebase-core:15.0.2"
implementation "com.google.firebase:firebase-messaging:15.0.2"
}
//Put this on bottom of file
apply plugin: 'com.google.gms.google-services'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment