A react native module to display HERE maps
npm install react-native-here-maps-android``SH`
yarn add react-native-here-maps-android
In AndroidManifest.xml add:
`XML`
In MainApplication.java:
`Java
import com.heremapsrn.react.map.HereMapPackage;
protected List
return Arrays.
new MainReactPackage(),
new HereMapPackage() // <------ Add this line
);
}
`
Then, open AndroidManifest.xml and update this section with your license.
`XML
android:value="YOUR-APP-ID-HERE" />
android:value="YOUR-APP-TOKEN-HERE" />
``