Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -325,5 +325,3 @@ Added:

- Updated the Roam SDK to the latest version.
- Integrated GCP support.


8 changes: 4 additions & 4 deletions js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -408,16 +408,16 @@ const publishAndSave = (jsonMetadata) => {
}

const batchProcess = (enable, syncHour) => {
NativeModules.RNRoam.batchProcess(enable, syncHour);
};
NativeModules.RNRoam.batchProcess(enable, syncHour)
}

const stopPublishing = () => {
NativeModules.RNRoam.stopPublishing()
}

const createGeofence = (geofence) => {
NativeModules.RNRoam.createGeofence(geofence);
};
NativeModules.RNRoam.createGeofence(geofence)
}

const startTracking = (trackingMode) => {
NativeModules.RNRoam.startTracking(trackingMode)
Expand Down