This repository is no longer actively maintained as of 24th September 2025.
It will be archived and deprecated on NPM. You may continue to use the package, but no new features or fixes will be provided.
React native bridge for landmarksid location tracking
npm install react-native-landmarksidInclude the LandmarksID pod in the Podfile. Usually located in iod/Podfile
pod 'LandmarksID/LO', :git => 'https://github.com/LANDMARKSID/LandmarksID-iOS.git', :tag => '2.5.1'
Add a repository to android build.gradle file.
repositories {
...
maven {
url "https://jitpack.io"
credentials {
username "[ENTER PROVIDED USERNAME HERE]"
}
}
}
import Landmarksid from "react-native-landmarksid";
// ...
const result = await Landmarksid.initialize('APP_ID', 'APP_SECRET', {test_param: 'test'});Set custom data.
Landmarksid.setCustomData({test_param: 'test'});See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT