最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

react native - .comments is not a valid Plugin property after upgrading from 0.72.15 to 0.76.0 - Stack Overflow

programmeradmin1浏览0评论

Recently I have been upgrading my react native version from 0.72.15 to 0.75.0 following this Upgrade helper

I faced several conflict and then fixed, finally I got stuck with ments is not a valid Plugin property in my index.js file

This is what I have in index.js

/**
 * @format
 */

import {AppRegistry} from 'react-native';
import App from './App';
import {name as appName} from './app.json';

import messaging from '@react-native-firebase/messaging';

messaging().setBackgroundMessageHandler(async remoteMessage => {
    console.log('Message handled in the background!', remoteMessage);
});

AppRegistry.registerComponent(appName, () => App);

Initially I am trying to fix IOS app. Any suggestions about this issue?

Update - 1

发布评论

评论列表(0)

  1. 暂无评论