Heremap React native Library
npm install @i2sts/react-native-here-mapsAdd the Following in your android project Manifest:
- Permissions
``sh`
`
- Before ending __ tag add sdk credentials from heremapsh`
android:value="xxxxxxxxxxxxxxxxxx" />
android:value="xxxxxxxxxxxxxxxxxxx" />
android:value="xxxxxxxxxxxxxxxxxxxxxxxx" />
Replace xxx with your credentials
In case of shared Lib error
Add a line on _MainApplication.java_
`sh`
System.loadLibrary("c++_shared");
before super.onCreate();
and still the error presides add this line on your project build.gradle after buildtypes close
`sh``
packagingOptions {
pickFirst '*/.so'
}
MIT