Is it possible to start a SmartEyeglass application from Android activity instead of selecting it manually on the Glasses Menu?
I have tried the code below but no success:
Intent intent = new Intent(Intents.CONTROL_START_INTENT);
intent.putExtra(Intents.EXTRA_AEA_PACKAGE_NAME, "com.my.application");
// intent.putExtra(Control.Intents.EXTRA_EXTENSION_KEY, Constants.EXTENSION_KEY);
intent.setPackage("com.sony.smarteyeglass");
sendBroadcast(intent, Registration.HOSTAPP_PERMISSION);