如果你在运行Android模拟器时遇到了错误信息'Unexpected '-prop' value”,那么可能是因为你在命令行中使用了无效的'-prop'参数。要解决这个问题,你可以使用以下方法之一:
//获取模拟器实例 Emulator emulator = Emulator.getEmulator(avdName); //打开模拟器配置器 Configurator configurator = emulator.getConfigurator(); //创建一个属性集 PropertyMap properties = configurator.getProperties(); //添加/修改属性 properties.add(Property.of("键", "值")); //删除属性 properties.remove("键"); //保存更改 configurator.save();