正如在How to create Android Virtual Device with command line and avdmanager?中指出的
原则上可以从命令行创建AVD.虽然不是很直接.在文档之后,应该有一个-t选项,可以使用该选项指定一个正在尝试使用targetID进行仿真的特定设备.不幸的是,从25.3.1版本开始,avdmanager无法识别选项-t.
有一个选项–tag,但它似乎不是-t等效项,因为它无法识别提供的targetID(从列表中获取).
如何指定我要模拟的设备?
解决方法:
例如回声“否” | avdmanager-详细创建avd –force –name x86 –device“ 4in WVGA(Nexus S)”-打包“ system-images; androID-24; Google_APIs; x86” –tag“ Google_APIs” –abi“ x86“
哪里:
Usage: avdmanager [global options] create avd [action options] Global options: -s --silent : Silent mode, shows errors only. -v --verbose : Verbose mode, shows errors, warnings and all messages. --clear-cache: Clear the SDK Manager repository manifest cache. -h --help : Help on a specific command.Action "create avd": Creates a new AndroID Virtual Device.Options: -a --snapshot: Place a snapshots file in the AVD, to enable persistence. -c --sdcard : Path to a shared SD card image, or size of a new sdcard for the new AVD. -g --tag : The sys-img tag to use for the AVD. The default is to auto-select if the platform has only one tag for its system images. -p --path : Directory where the new AVD will be created. -k --package : Package path of the system image for this AVD (e.g. 'system-images;androID-19;Google_APIs;x86'). [required] -n --name : name of the new AVD. [required] -f --force : Forces creation (overwrites an existing AVD) -b --abi : The ABI to use for the AVD. The default is to auto-select the ABI if the platform has only one ABI for its system images. -d --device : The optional device deFinition to use. Can be a device index or ID.
总结 以上是内存溢出为你收集整理的android-如何从命令行使用avdmanager安装特定的模拟器?全部内容,希望文章能够帮你解决android-如何从命令行使用avdmanager安装特定的模拟器?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)