4

我第一次使用react-native-fcm,根据文档,我已经完成了所有链接工作,并在 firebase 控制台中使用云消息选项卡发送通知。

发送通知状态完成后,对于 IOS 来说它工作正常(收到通知),但 android 什么都没有出现。我正在使用具有android N的 mi 设备进行测试, 这是我的build.gradle设置。

    compileSdkVersion 26
    buildToolsVersion "26.0.2"

    defaultConfig {
        applicationId "XXXXXX"
        minSdkVersion 21
        targetSdkVersion 26
        versionCode 39
        versionName "1.91"
        ndk {
            abiFilters "armeabi-v7a", "x86"
        }
    }

请帮助我,我正在寻找很长但无法找到解决方案。提前谢谢!!!

在 2018 年 8 月 6 日进行一些实验后进行编辑

我已经尝试了很多没有锻炼的东西,然后我创建了一个新项目 firebase 并且也做出了原生反应。一切都在进行中(收到通知),然后我开始检查我的旧项目文件和新文件,经过多次实验后我发现问题在于tools:node="replace"我添加了这个,因为react-native-facebook-login(谷歌上的一些解决方案我遇到了一些错误)。

现在请帮助我编写这个 android 代码如何编写它,因为我的假设是tools:node="replace"根据这个参考用 Facebook 登录覆盖我的 fcm 代码。tools:node="replace"单击应用程序图标后,我无法删除其崩溃的应用程序。

<application
      tools:node="replace" <-- this is culprit
      android:name=".MainApplication"
      android:label="@string/app_name"
      android:icon="@mipmap/ic_launcher"
      android:allowBackup="false"
      android:theme="@style/AppTheme">
      <receiver android:name="com.evollu.react.fcm.FIRLocalMessagingPublisher"/>
      <receiver android:enabled="true" android:exported="true"  android:name="com.evollu.react.fcm.FIRSystemBootEventReceiver">
        <intent-filter>
          <action android:name="android.intent.action.BOOT_COMPLETED"/>
          <action android:name="android.intent.action.QUICKBOOT_POWERON"/>
          <action android:name="com.htc.intent.action.QUICKBOOT_POWERON"/>
          <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
      </receiver>
      <!-- <meta-data android:name="com.google.firebase.messaging.default_notification_icon" android:resource="@mipmap/icon"/> -->
      <service android:name="com.evollu.react.fcm.MessagingService" android:enabled="true" android:exported="true">
        <intent-filter>
          <action android:name="com.google.firebase.MESSAGING_EVENT"/>
        </intent-filter>
      </service>
      <service android:name="com.evollu.react.fcm.InstanceIdService" android:exported="false">
        <intent-filter>
          <action android:name="com.google.firebase.INSTANCE_ID_EVENT"/>
        </intent-filter>
      </service>
      <activity
        android:name=".MainActivity"
        android:label="@string/app_name"
        android:launchMode="singleTop"
        android:screenOrientation="portrait"
        android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
        android:windowSoftInputMode="adjustPan">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
      </activity>
      <activity android:screenOrientation="portrait" android:name="com.facebook.react.devsupport.DevSettingsActivity" />

      <!--add FacebookActivity-->
      <activity
        tools:replace="android:theme"
        android:screenOrientation="portrait"
        android:name="com.facebook.FacebookActivity"
        android:configChanges="keyboard|keyboardHidden|screenLayout|screenSize|orientation"
        android:label="@string/app_name"
        android:theme="@android:style/Theme.Translucent.NoTitleBar"/>

      <!--add CustomTabActivity-->
      <activity
        android:screenOrientation="portrait"
        android:name="com.facebook.CustomTabActivity"
        android:exported="true">
        <intent-filter>
            <action android:name="android.intent.action.VIEW" />
            <category android:name="android.intent.category.DEFAULT" />
            <category android:name="android.intent.category.BROWSABLE" />
            <data android:scheme="@string/fb_login_protocol_scheme" />
        </intent-filter>
      </activity>

      <!--reference your fb_app_id-->
      <meta-data
        android:name="com.facebook.sdk.ApplicationId"
        android:value="@string/fb_app_id"/>
      <meta-data android:name="com.bugsnag.android.API_KEY"
        android:value="xxxxxxxxxxxxxx"/>
    </application>
4

1 回答 1

1

即使您应该发布 android/build.gradle 甚至 android/app/build.gradle 的所有内容,我也想帮助您说您应该使用 react-native-firebase,因为 react-native-fcm 将不再收到新的功能。

react-native-firebase 引入了新的 firebase 消息传递和远程/本地通知功能。它与其他 Firebase 功能有很好的集成。我会建议新来者检查一下。

请注意,一些高级功能仍在开发中

在应用程序未运行自定义 iOS 通知操作时处理 iOS 远程通知 对于现有的 react-native-fcm 用户,react-native-firebase 现在可以做 react-native-fcm 可以做的事情,因此并行构建相同的东西是浪费精力.

由于这些天我越来越忙,并且开始觉得每天维护这个 repo 很有挑战性,而 react-native-firebase 有一个更大的团队/公司支持它,现有用户可能会考虑迁移到 react-native-firebase。

我使用 react-native-firebase 作为迁移参考创建了一个示例项目

react-native-fcm 仍将接受 PR 和错误修复,但可能不再开发新功能。

于 2018-06-07T14:50:29.333 回答