Android Warning: Native component for “AIRMap” does not exist

后端 未结 3 441
终归单人心
终归单人心 2020-12-16 22:43

I have successfully added airbnb map in react app.

But when I am adding airbnb map view to existing android native application. I am getting always empty map with re

3条回答
  •  情深已故
    2020-12-16 23:11

    I fixed the problem by adding MapsPackage to the getPackages method in MainApplication.java file.

    no need to add @Override

    My Code looks like this:

    protected List getPackages() {
          return Arrays.asList(
            new MapsPackage()
          );
    }
    

提交回复
热议问题