-
Notifications
You must be signed in to change notification settings - Fork 714
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Windows UWP Build does not work - Visual Studio 2017, v2.0.4 #688
Comments
Did you try building with Visual Studio? I also change the PlatformToolset from v141 to v140 but i have the following error on trying to build on Windows. It seems that SQLite3 is undefined in the process. Can anyone help? |
Changing PlatformToolseet to v140 will never work on Visual Studio 2017. Can you guys try the following:
|
The build works with VS 2017 after I changed the Platform-Toolset from v140 to v141. The cordova build fails:
Edit:
to the |
The output shows that you are building for the "AnyCPU" target which is not supported with this plugin. You may want to look at how we did this in #580 (it took us several tries to get it right). |
Okay, the sample project builds now. Thanks. For my project this is unfortunately not enough. :(
It looks like some path is |
I can think of a couple ways forward for you:
|
Building with Visual Studio 2017 works for me |
This is fixed, follow the bellow steps
|
You can add a file 'CordovaApp.Windows10.jsproj.user' into appdir/platforms/windows/
The error is caused by DevEnvDir variable not being set and this .user file will ensure the variable is set for the project. |
@jayeshust at what timing did you add the SQLite plugin before build? |
Hi,
i'm trying to port an existing iOS/Android Ionic Application to Windows. The application uses cordova-sqlite-storage.
Unfortunetly it does not work out of the box. (quelle surprise)
My setup:
Executed steps:
This is what I get as the result of the
build
step:I manually tried to change the
<PlatformToolset>
fromv141
tov140
but this change gave me another error.Any ideas?
Thank you.
The text was updated successfully, but these errors were encountered: