I sideloaded a uwp app to my Win 10 Mobile Lumia 640. Later I went to update it and I got an error (see below). I uninstalled the app from my phone by the long click/uninstall method. I tried again (and several more times) but I keep getting the following error...
----------------------------------------
Checking for dependencies... Scanning given package for all necessary dependencies...
Attempting to match dependency: 'Microsoft.VCLibs.140.00' Dependency found at 'D:\ProgDev\VS2015\Projects\BwMinWin10\BwMinWin10\AppPackages\BwMinWin10_1.0.4.0_Test\Dependencies\ARM\Microsoft.VCLibs.ARM.14.00.appx'.
Attempting to match dependency: 'Microsoft.NET.Native.Runtime.1.1' Dependency found at 'D:\ProgDev\VS2015\Projects\BwMinWin10\BwMinWin10\AppPackages\BwMinWin10_1.0.4.0_Test\Dependencies\ARM\Microsoft.NET.Native.Runtime.1.1.appx'.
Sending 'BwMinWin10_1.0.4.0_x86_x64_arm.appxbundle' to the remote device.
Sending dependency 'Microsoft.VCLibs.ARM.14.00.appx' to the remote device.
Sending dependency 'Microsoft.NET.Native.Runtime.1.1.appx' to the remote device.
Installing app...
Remote action failed. 0x80073CF9
Windows cannot install app data for package Microsoft.VCLibs.140.00_14.0.22929.0_arm__8wekyb3d8bbwe to volume D: because it is already installed to volume C:.
0x80073cf9 Cleaning up dependencies. Cleaning up app package. Cleaning up remote target components. Disconnecting. Done.
-----------------------------------------------------
Looks like an issue with the Dependency: 'Microsoft.VCLibs.140.00', which surprises me. I am assuming the internal ram is drive C: and the SD Card is drive D:.
Does anyone have solution to this error?
Begin Edit
Followed the documentation on this page...
https://msdn.microsoft.com/en-s/library/windows/desktop/hh454036.aspx
...under the Sideload your app package section it has the following sentence.... To install an app to a Windows 10 Mobile device, use the WinAppDeployCmd.exe
...which takes you too... https://msdn.microsoft.com/library/windows/apps/xaml/mt203806.aspx
This was my command line entry...
winappdeploycmd install -file "D:\ProgDev\VS2015\Projects\BwMinWin10\BwMinWin10\AppPackages\BwMinWin10_1.0.4.0_Test\BwMinWin10_1.0.4.0_x86_x64_arm.appxbundle" -ip 192.168.0.222 -pin xxxxxx
This worked the first time I installed it.
I did a winappdeploycmd list -ip xxxxxxxxxx but I did not see (or maybe didn't recognize) the program listed so I did an uninstall from the app menu by pressing on the tile and choosing uninstall.
End Edit