Sha256: 0286517a3307898dd9c2de9635d251f229a3b2dd4ed3cfbf095bd0c264ce3c0b
Contents?: true
Size: 607 Bytes
Versions: 30
Compression:
Stored size: 607 Bytes
Contents
package sh.calaba.instrumentationbackend.actions.map_unsupported; import sh.calaba.instrumentationbackend.Result; import sh.calaba.instrumentationbackend.actions.Action; public class UnsupportedMapAction implements Action { @Override public Result execute(String... args) { throw new RuntimeException( "Google Maps is not supported by default.\n" + "You can add support by following running calabash-android with --google-maps-support\n" + "See more at: https://github.com/calabash/calabash-android/wiki/Google-Maps-Support" ); } @Override public String key() { return null; } }
Version data entries
30 entries across 30 versions & 1 rubygems