Hello Ionic-Team,
before of all, great great framework!!! I love it.
I’m on Windows 10 64bit and I’ve installed all necessary stuff (node, ionic,… visual studio 2015 with SDK 10…)
I want to add my Android/Ios Ionic application to Windows phone 10 platform.
I’m able to build my app for windows (ionic build windows).
If I execute “ionic run windows” the app runs fine in my windows 10 desktop computer.
How can I deploy my app on windows phone emulator or on physical device connected through usb?
I tried to send the compiled application .appx (compiled in debug) to my windows 10 phone (by email) and (after enabled developer mode) I tryed to install it.
The installation succeeded but when I try to run the app it will automatically close after 1 second.
How can I debug the app to check If there are some exception?
I tried also to load the .sln (created by ionic build) in visual studio 2015 but I’ve got some errors.
Can you help me please??
this is my package.json
{
"name": "MyApp",
"version": "1.1.1",
"description": "An Ionic project",
"dependencies": {
"gulp": "^3.5.6",
"gulp-sass": "^2.0.4",
"gulp-concat": "^2.2.0",
"gulp-minify-css": "^0.3.0",
"gulp-rename": "^1.2.0"
},
"devDependencies": {
"bower": "^1.3.3",
"gulp-util": "^2.2.14",
"shelljs": "^0.3.0"
},
"cordovaPlugins": [
"cordova-plugin-device",
"cordova-plugin-console",
"cordova-plugin-whitelist",
"cordova-plugin-splashscreen",
"cordova-plugin-statusbar",
"ionic-plugin-keyboard",
"phonegap-plugin-push"
],
"cordovaPlatforms": [
"android",
"ios",
{
"platform": "windows",
"version": "https://aka.ms/cordova-win10",
"locator": "windows@https://aka.ms/cordova-win10"
}
]
}
If I miss some information please let me know!
thanks you a lot!!!