Cannot create emulator via Jenkins' Android Emulator Plugin -
when jenkins tries generate emulator, errors out with:
tools/android create avd -f -a -c 256m -s 1080x1920 -n hudson_de-de_480_1080x1920_google_inc._google_apis_23_x86 -t "google inc.:google apis:23" --abi x86 error: invalid --tag default selected target.
but tools/android list targets
outputs
id: 6 or "google inc.:google apis:23" name: google apis type: add-on vendor: google inc. revision: 1 description: android + google apis based on android 6.0 (api level 23) libraries: * com.android.future.usb.accessory (usb.jar) api usb accessories * com.google.android.media.effects (effects.jar) collection of video effects * com.google.android.maps (maps.jar) api google maps skins: hvga, qvga, wqvga400, wqvga432, wsvga, wvga800 (default), wvga854, wxga720, wxga800, wxga800-7in tag/abis : google_apis/x86
what doing wrong?
apparently, --abi
parameter needs fix, not --tag
parameter. error misleading:
$ tools/android create avd -f -a -c 256m -s 1080x1920 \ -n hudson_de-de_480_1080x1920_google_inc._google_apis_23_x86 \ -t "google inc.:google apis:23" --abi google_apis/x86
Comments
Post a Comment