Ionic / Cordova won't deploy to Windows 10 phone -
i have existing ionic app trying test on windows 10 mobile phone, cannot ionic (or cordova) deploy phone. have added windows platform using ionic platform add windows
, tried deploy using ionic run windows --device -- --phone --archs="x86"
results in:
deploying app package... unexpected error installation: error: not implemented may have installed app earlier version of cordova-windows. ensure app uninstalled phone , try run again. error: error: not implemented
if ionic run windows --list
list of detected devices this:
available windows devices: 0. device (device) available windows virtual devices: no devices found matching specified criteria.
if try deploy directly 0. device (device)
app launches on desktop computer.
windows can "see" windows 10 phone , can browse contents of in windows explorer.
i have enabled developer mode on phone load apps anywhere , have purchased windows developer license see if help, didn't.
finally, tried installing app using device portal feature, when try install it, error:
failure reason: failed start deployment. failure text: no signature present in subject. (0x800b0100)
has else been able deploy ionic / cordova app windows 10 device? if so, how did set up?
i had same issue. default cordova build command produces 2 packages: windows 8.1 , windows phone 8.1. upgrade windows package version 10 following configuration setting must added configuration file (config.xml).
<preference name="windows-target-version" value="10.0" />
this resolved issue.
Comments
Post a Comment