Expo-notifications Proguard

问题描述

我的项目已经实施了博览会通知来处理本地通知。它在开发和生产中运行良好。但是如果我打开 Proguard,通知就不会出现。

在我的 proguard-rules.pro 规则中,我有

# expo-notifications

-keep class expo.modules.notifications.NotificationsScoper { *; }

在构建发布时解决了我的问题,但通知没有弹出,出现在日志中:

03-05 11:29:45.634 22515-22557/? E/expo-notifications: Could not save notification "a4c57834-d4ad-4613-bc18-afa8cadd228d": org.json.JSONObject.

有人可以帮我吗?谢谢!

解决方法

我终于解决了我的问题。

我在 proguard-rules.pro 中添加了以下行:

-keep class expo.modules.** { *; }