Develop Windows 8.0/8.1 app from already existing IBM Worklight Project - ibm-mobilefirst

I need to create a Windows Phone 8.0 as well as Windows Phone 8.1 app from already developed IBM Worklight(6.1) Project. Is there any document that elucidates end to end solution to do that? Also could you please elucidate tools/plugins required?

To your existing MFP/Worklight project, you can add the Windows Phone environment. This will generate the Visual Studio project for Windows Phone. The same app can be run on Windows Phone 8.0 and 8.1.
The following getting started modules give you an overview of whats needed to develop a Windows Phone app.
http://public.dhe.ibm.com/software/mobile-solutions/worklight/docs/v610/01_07_Setting_up_your_Windows_Phone_8_development_environment.pdf
http://public.dhe.ibm.com/software/mobile-solutions/worklight/docs/v610/03_11_General_information_when_developing_for_Windows_Phone_8.pdf

Related

Can you have a universal app that targets Windows 10 and 8.1?

I have a universal app for Windows 8.1 and Phone 8.1 and am looking to make the jump to Windows 10.
Looking at the guides, I need to recreate the projects, but does this mean this new project will only work on Windows 10?
What is the strategy for this setup? Keep a Windows 8.1 version and a Windows 10 version? Or does the Windows 10 version work on 8.1?
You can't.
Windows 10 introduces several new API and also included old API's those work in Windows 8. but you just simply can't run Windows 10 app in Windows 8 environment.
if you look at this site: http://www.jayway.com/2015/06/16/do-windows-8-apps-run-on-windows-10/
he tells us that Win 8 app runs Win 10 but lack of some feature such as charm bar and splash screen.
of course this concerns many developer but in my honest opinion, you should just move on to developing app for windows 10. everyone will upgrade, eventually.
there's so many advantages for developing win 10 app, one of them is your app will run on broader device and market.
more info: https://msdn.microsoft.com/en-us/library/windows/apps/dn894631.aspx

How to use windows phone toolkit in windows phone 8.1 universal app

I have added windows phone toolkit using nuget package in windows 8.1 universal app project. it is added successfully, but I can't see reference assemblies in the project and neither i can add reference in page xaml to use toolkit controls. How can use windows toolkit in universal windows phone 8.1 app?
The Windows Phone Toolkit is currently (26th of April, 2014) only supporting Silverlight 8.0 / 8.1 applications.
If you wish to re-use components, you would need to download the source from CodePlex and port the individual components to a Windows Runtime library project. However, this might require a (very) large portion of work.

Develop a windows store app for Windows 8 and Windows 8.1

is it possible to develop an app for windows 8 and it will run on windows 8.1 normally? what about the validation in the store? and its visibility in the store for users who have windows 8.1 on their pcs?
why visual studio 2013 professional version is supported by windows 8 and not visual studio 2013 express edition for windows?
if we developp a library in windows phone 8, could we reuse it in Windows 8.1 application? (specifically its validation in the store?)
thx for ur answers
Will a Win8 app run on Win8.1?
Check this question here on SO: Migration Windows Store App based on 8.1. does it has backward compatibility with 8?
Basically, the answer is YES. But not the other way around. Windows 8.1 apps will not work on Windows 8. So the visibility in the store depends on the targeted version of the app and the version that is running. Win 8.1 users will see both and Win 8 users only see Win 8 apps.
VS2013 Express on Windows 8.1 only?
Depends on the type of VS you want. Check the Visual Studio Express page and decide which version you want. For example Express 2013 for Windows will only work on Windows 8.1, while Express 2013 for Windows Desktop will also work on Windows 8.
Windows Phone 8 to Windows 8?
Channel9 Always had interesting posts about development and for this case too. Check the page Building Apps for Both Windows 8 and Windows Phone 8 Jump Start for more information about developing for both platforms.
Hope this helps! :)

App for Windows 8 pro

I need to create an application that runs on windows 8 pro.
When building my application with phonegap I get a resulting .xap file for Windows8 phone.
This can't be executed so I assume I need a .exe.
I also read about .appx files.
Can anyone clearify the difference between all the extensions and what my options are for a windows 8 PRO - application. Is it possible to use phonegap or is this only for windows phone?
Windows 8 and Windows Phone 8 are different platforms with some common roots. XAP is the deployment vehicle for phone, and .appx is for Windows 8.
Since PhoneGap is just a JavaScript library, it can be used with Windows 8 applications, but you'll need to incorporate it into a Windows 8 HTML5/JavaScript application. Here's a blog post that should get you on your way: http://blogs.msdn.com/b/glengordon/archive/2012/08/06/windows-8-apps-for-the-phonegap-developer.aspx

VS Debug to a windows phone device?

My understanding is in visual studio, if i change my debug to 'Remote Machine' I should be able to build and deploy to my phone, and still be debugging it in visual studio.
However, I can't seem to find a guide on how to do this. Can anyone point me in the right direction?
I specifically have a windows 8 lumia 920 if it matters.
I have VS 2012 on Windows 8 Pro with the WP 8.0 SDK installed.
What project type are you using? It sounds like you may have been using one of the templates for Windows 8 (a Windows Store app), which have the Run dropdown options Simulator, Local Machine, and Remote Machine.
If you are developing for Windows Phone using one of the WP8 templates, the options that you should see in the Run dropdown are Device, Emulator WVGA 512MB, Emulator WVGA, Emulator WXGA, and Emulator 720P. To debug to your phone in Visual Studio, you need to select "Device" from that dropdown. Here is an article with a screenshot.
If you have a solution that contains both a Windows Store and a Windows Phone project in it, make sure that you right-click on the Windows Phone project and select "Set as Startup Project".