0

There is a requirement where user want to control his location sharing (or not sharing) from custom setting screen inside the application. But as per my understanding Xtify SDK keeps on sending location always to Xtify if user has initially accepted to share location at the time of install.

Can we control the location sending option to Xtify by SDK function?

shafeeq
  • 1,499
  • 1
  • 14
  • 30
Vivek S
  • 15
  • 5

1 Answers1

0

You can disable sending of location. Use:

XtifyLocation.disableRepetitiveLocUpdate(getApplicationContext());

on Android, and

[[XLappMgr get] updateLocationRequiredFlag:NO];

on iOS to disable sending up location.

user3486184
  • 2,147
  • 3
  • 26
  • 28