虽然使用npm i react-native-notifications
添加react-native-notifications程序包并为android平台设置了所有必需的步骤,但仍然得到:
无法解决项目:反应性通知
答案 0 :(得分:3)
请根据文档,在[android / app / build.gradle]下的android的build.gradle文件中添加缺少的部分:[1]
defaultConfig {
applicationId "com.packagename.app"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
+ missingDimensionStrategy "RNNotifications.reactNativeVersion", "reactNative60" // See note below!
-
-
}
对于0.60.x及更高版本,请使用"reactNative60"
,对于0.59.x及以下版本,请使用"reactNative59"
。