Reputation: 677
I am using React native expo and I will install a plugin via github. However, in the documentation, changes are required in the /android/build.gradle folder. But my application does not have such a folder either. Can you help me ?
Github link: https://github.com/zo0r/react-native-push-notification
Upvotes: 0
Views: 5014
Reputation: 176
Expo Takes Care of .android & .ios folders. so it doesn't give you those files; but if you're sure you don't want expo, use:
expo eject
then, you have to install all expo dependencies which you installed using Expo.
but, if You're just asking for notifications, you may use:
expo install expo-notifications
and use that you send both server and local notifications.
you may find more info here.
Upvotes: 1