DEV Community

Discussion on: Implement Push Notification with Firebase in React Native

Collapse
 
longman0512 profile image
Smart Developer

Hello
You missed this part.
In android/build.grade file,

dependencies {
classpath("com.android.tools.build:gradle:3.4.1")
classpath 'com.google.gms:google-services:4.2.0'
}

repositories {
google()
maven {
url 'maven.google.com'
}
jcenter()
}

everybody can fine this solution on this url
djamware.com/post/5d7773f05d8cdc05...

Thanks