@Implementation @SuppressWarnings("unused") public static String get(String key) { if ("ro.product.cpu.abilist".equals(key)) { return "armeabi"; } return ShadowSystemProperties.get(key); }
@Override protected ShadowMap createShadowMap() { // Don't do any class binding except the bare minimum, because that's what we're trying to test here. return new ShadowMap.Builder() .addShadowClass(ShadowSystemProperties.class) .build(); }