Skip to content
Merged
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: 1 addition & 1 deletion android/src/main/java/com/expofp/ExpofpViewManager.kt
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class ExpofpViewManager : SimpleViewManager<View>() {
settingsMap.getString("secret") ?: "",
Mode.IPS_AND_GPS
)
lpSettings.setServiceNotificationInfo("Knowledge - ServiceNow is running", R.drawable.common_google_signin_btn_icon_dark);
lpSettings.setServiceNotificationInfo("Background Location is running", R.drawable.common_google_signin_btn_icon_dark);
lpSettings.setAlias("onesignal_user_id", it.getString("oneSignalUserId") ?: "");
val locationProvider = CrowdConnectedProvider(application, lpSettings)
GlobalLocationProvider.init(locationProvider)
Expand Down
7 changes: 5 additions & 2 deletions src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,11 @@ const LINKING_ERROR =
type ExpofpProps = {
style: ViewStyle;
settings: {
url: string,
onesginalUserId?: string;
url: string;
oneSignalUserId?: string,
appKey?: string
token?: string;
secret?: string;
}
};

Expand Down