I have the customer facing activity showing up on the attached mini, which is great, but when I send a message to that device using
executor.execute(()->{ remoteDeviceConnector.sendMessageToActivity(new MessageToActivity(CUSTOM_ACTIVITY_NAME, String.valueOf(amount)) });
and I send to
@Override public void onMessage(String s) { ((TextView)this.findViewById(R.id.donateText)).setText("String " + s); }
it never get's triggered. How do we get this to receive?