Beat
Beat

Reputation: 4412

Cannot build cordova windows platform (error APPX1609)

Since updating to Microsoft Visual Studio 2015 Update 3 (KB3165756) today I cannot build my cordova windows application anymore by:

cordova build windows -- --appx=8.1-phone

Because of the following error:

Package.appxmanifest(2,2): error APPX1609: The package contains a Debug framework reference 'Name=Microsoft.Phone.WinJS.2.1, MinVersion=1.0.9651.0'. Ensure all framework references in the package are valid frameworks hosted by the Store.

My working environment:

Upvotes: 0

Views: 322

Answers (1)

Beat
Beat

Reputation: 4412

Re-adding the windows platform actually helped me:

cordova platform remove windows
cordova platform add windows

Upvotes: 1

Related Questions