Hmm.. if empty is not accepted, just give it a space and change javasource/deeplink/StartDeeplinkJava.java line 285 from
if (loginLocation != null && !loginLocation.isEmpty()) {
to
if (loginLocation != null && !loginLocation.trim().isEmpty()) {