My expo react-native application is working perfectly fine locally, in dev mode (Expo Go). But it crashes mercilessly in production when downloaded from Google Play Store and upon installation. Using logcat, the error message is:
java.lang.IllegalStateException: Couldn't find implementation for Permissions interface.
The only permission related code is a notifications permission request with expo-notifications
.
import * as Notifications from 'expo-notifications';
...
await ExpoNotifications.getPermissionsAsync();
...
await ExpoNotifications.requestPermissionsAsync();
Any help would be greatly appreciated
Thank you for helping solve this issue.