@ReactMethod public void checkForUpdate() { if (_initialized) { UpdateManager.register(_activity, _token); } }
public static void checkForUpdates(Activity context) { if (BuildVars.DEBUG_VERSION) { UpdateManager.register(context, BuildVars.HOCKEY_APP_HASH); } }
/** HockeyApp integration */ private void checkForUpdates() { // Remove this for store builds! UpdateManager.register(this, getString(R.string.hockeyapp_key)); }
private void checkForUpdates() { if (Core.core().getHockeyToken() != null) { UpdateManager.register(this, Core.core().getHockeyToken()); } }