我的expo react原生应用程序在开发模式(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();
任何帮助都将不胜感激
感谢您帮助解决此问题。
发布于 2021-07-05 03:58:29
遇到了类似的问题。
似乎expo-permissions
是不推荐使用的。参考here。
解决我的问题的是从项目中删除expo-permission包。
cd ProjectName
expo uninstall expo-permissions
或
npm uninstall expo-permissions
发布于 2021-07-05 15:44:48
我也遇到了同样的问题,在更新了expo通知后,我设法让它正常工作了:
npm install expo-notifications@0.12.2
其他人提到,他们必须更新其他与expo相关的包,因为expo-permissions已被弃用,就像上面提到的@sanjeev一样。
https://stackoverflow.com/questions/68235348
复制