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
I fixed the problem by adding MapsPackage to the getPackages method in MainApplication.java file.
no need to add @Override
@Override
My Code looks like this:
protected List getPackages() { return Arrays.asList( new MapsPackage() ); }