react-native – 不变违规:requireNativeComponent:在UIManager中找不到“RNGADBannerView”

我最近安装了admob for react-native.但是我收到错误“RNGADBannerView”在UIManager中找不到“.我不知道那是什么意思?

_can有人帮忙吗?_

import {AdMobBanner} from 'react-native-admob';

  export default class Home extends Component{
   render(){
    return <View>
        <Text>helo</Text>
        <AdMobBanner
            adSize="fullBanner"
            adUnitID="my_id"
            onAdFailedToLoad={error => console.error(error)}
        />
    </View>
}

依赖关系:

   "react": "16.4.1",
   "react-native": "0.56.0",
   "react-native-admob": "^2.0.0-beta.5",
   "react-native-fbsdk": "^0.7.0",
    "react-navigation": "^2.6.2"

最佳答案 您似乎没有将库链接到您的项目.

在项目的根目录中使用react-native链接应该可以解决问题.

点赞