我的 expo react-native 应用程序在开发模式下(Expo Go)在本地运行良好。但是从 Google Play 商店下载和安装时,它在生产中无情地崩溃。使用 logcat,错误信息是:
java.lang.IllegalStateException: Couldn't find implementation for Permissions interface.
唯一与权限相关的代码是通知权限请求expo-notifications
。
import * as Notifications from 'expo-notifications';
...
await ExpoNotifications.getPermissionsAsync();
...
await ExpoNotifications.requestPermissionsAsync();
任何帮助将不胜感激
感谢您帮助解决此问题。