use of com.eveningoutpost.dexdrip.wearintegration.WatchUpdaterService in project xDrip-plus by jamorham.
the class Home method startWatchUpdaterService.
public static void startWatchUpdaterService(Context context, String action, String logTag, String key, boolean value) {
final boolean wear_integration = Pref.getBoolean("wear_sync", false);
if (wear_integration) {
Log.d(logTag, "start WatchUpdaterService with " + action);
context.startService(new Intent(context, WatchUpdaterService.class).setAction(action).putExtra(key, value));
}
}
use of com.eveningoutpost.dexdrip.wearintegration.WatchUpdaterService in project xDrip-plus by jamorham.
the class Home method startWatchUpdaterService.
public static void startWatchUpdaterService(Context context, String action, String logTag, String key, String value) {
final boolean wear_integration = Pref.getBoolean("wear_sync", false);
if (wear_integration) {
Log.d(logTag, "start WatchUpdaterService with " + action);
context.startService(new Intent(context, WatchUpdaterService.class).setAction(action).putExtra(key, value));
}
}
use of com.eveningoutpost.dexdrip.wearintegration.WatchUpdaterService in project xDrip by NightscoutFoundation.
the class Home method startWatchUpdaterService.
public static void startWatchUpdaterService(Context context, String action, String logTag, String key, String value) {
final boolean wear_integration = Pref.getBoolean("wear_sync", false);
if (wear_integration) {
Log.d(logTag, "start WatchUpdaterService with " + action);
context.startService(new Intent(context, WatchUpdaterService.class).setAction(action).putExtra(key, value));
}
}
use of com.eveningoutpost.dexdrip.wearintegration.WatchUpdaterService in project xDrip by NightscoutFoundation.
the class Home method startWatchUpdaterService.
public static void startWatchUpdaterService(Context context, String action, String logTag, String key, boolean value) {
final boolean wear_integration = Pref.getBoolean("wear_sync", false);
if (wear_integration) {
Log.d(logTag, "start WatchUpdaterService with " + action);
context.startService(new Intent(context, WatchUpdaterService.class).setAction(action).putExtra(key, value));
}
}
Aggregations