Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
Is it possible to port my windows phone 8.1 (universal) app to Android? without using Xamarin.
thanks
You can't. There is not such thing that converts one os native app into other os nativ app. You can write for example in phonegap to support many os with same code, but this is other approach. I think if you manage to write such a system that can covert one native app into another you will be rich man.
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 days ago.
Improve this question
I want create a windows application .net or .net framework c# that :
login to google play store as a Clone Google play in windows form c# and download apk
Please advise where to start
A little confused as to how the work steps are.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
How can I implement RDP client in UWP?
I checked the MS samples and I don't see any practical implementation of RDP with UWP.
Is this possible? With WinForms and WPF it as possible but I can't find any sample for UWP.
As far as I know, this is not possible in pure UWP apps.
However, you could try building the app as a WPF app, add modern UI using XAML Islands and then package the app to publish it as an UWP app on the Microsoft Store using the Desktop Bridge.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I would like to know how i can convert finished application created in Universal Windows Platform to Android? Can i convert code ? Or is this doing with any applications? Thank you
There is no automated tool for this. Assuming your UWP app was created with C# and XAML you could look at using Xamarin.Forms to create an app that works on both platforms and is based on your current app.
Sorry, a full guide on how to do this is beyond a simple answer here and out of scope for this site.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I am developing an app in which i need to write text on image and save it by coding in windows phone. Is it possible? How?
This is possible in Windows Phone 8. Follow this link but for higher versions you need to look for equivalent APIs.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
We have planned to develop an application for the platforms
WPF Desktop,
Windows Phone and
Windows store.I want to share C# code and Xaml design between these platforms.I know that it is not possible to share the whole set of codes.Experts please guide me.Which frame work(MVC,MVVM,etc.)I have to develop?And how much possibilities are there for sharing?
For your c# business logic code use the Portable Class Library project in Visual Studio 2012 it supports the cross-platform development of .NET Framework apps. You can build portable assemblies that work on multiple platforms (Windows 7, Windows 8, Silverlight, Windows Phone, Xbox 360).