When sending the user to the Station's payment activity, the device will only make the transition when it is in landscape orientation.
final Intent intent = new Intent(Intents.ACTION_CLOVER_PAY);
intent.putExtra(Intents.EXTRA_CLOVER_ORDER_ID, _order.getId());
intent.putExtra(Intents.EXTRA_OBEY_AUTO_LOGOUT, true);
startActivity(intent);
When I attempt to start this activity in portrait orientation, the device will remain on its current activity until the screen is rotated into landscape.
If the device is rotated into portrait orientation once inside the payment activity, only credit card payments can be accepted since other payment options do not display on the screen.
Now that the Mobile and Mini devices are making their way into the field, the Station seems like it would be primarily merchant-facing, while the Mobile/Mini would be the customer-facing device. Are there plans to enable the full set of merchant-facing payment features in portrait orientation?