i want to send my android app calculated text to my UWP application.
Please tell me how i can do that, thanks
Suppose my app id addition app, and i add two numbers and resultant will my text which i want to transfer to UWP application.
It's possible with project rome. You'd use the SDK on both android and UWP. The draw back using project Rome instead of building your own server side is that project Rome requires your users to sign in with a Microsoft account
Related
I'm making a math app with xamarin.forms. I have an option called "show graph" and since I found it too hard to plot the graph using libraries, I want to use the app Desmos(very popular). So when the user presses "show graph", if Desmos is installed on the device, the app will open with the equation from my app. So the steps would be:
in my app
to this:
in Desmos app
How would this be possible using c# and Xamarin?You can open other apps easily with Xamarin.Essentials, but how would I actually make a change inside that opened app?
I am developing a project using .NET that connects to a SQL database with Microsoft Azure. I have two .NET projects, one is a mobile app using Xamarin, and the other is a normal C# application called DesktopProgram.
DesktopProgram is too big to run well on a phone. Therefore, I need to leave the UI on the mobile app, and the DesktopProgram in the cloud. Both projects will have to communicate with each other, and DesktopProgram has to communicate with the SQL Database.
If I make my DesktopProgram an ASP.NET project with all the C# logic, will it be able to send and receive events from the mobile app?
Is there a better way to do this? I need a way to execute the C# code, and get input and send output to the mobile app and SQL database. That means that no UI is needed for the web application.
Thanks in advance!
Dears
I am creating a windows forms application (c#) in which allows the user to upload .apk file to number of participants and hence my program will analyse some UAT properties.
My question is: is it possible to show any emulator inside a winform application and is it possible to communicate with it? In other words, is there any APIs or extensions for Android Emulator that I can use?
Thanks 😊
how to open windows stores app uwp app using C# windows application
How to open a windows stores app using C# windows application
using Process.Start("");
How to open any voice command like cortana ?
not sure you can link to the exe since it's a UWP app but fortunately it supports protocol activivation so causing this to work
Process.Start("ms-windows-store://");
Regarding #2,
To build skills (in US markets in English, including Cortana) start here:
botframework then skills kit
If you don't want to build skills but just want STT/TTS, start here:
Bing Speech
I would like to add to my app UWP on Windows 10 auto camera upload to the cloud function.
So basically I need this functionality, which according to other sources was not supported in WP8.1 so I dropped the idea.
Now when Lumia 950 and Windows 10 Mobile is out I would very much liked to add this function to my app, but unfortunately I can't find anything about it on newest Windows Mobile. Maybe you can help?
The page you link to is only about having a specific page for the auto upload settings within an app. It doesn't do the automatic uploading for you.
That list was only in WP8 and is not in Windows10 so you can't be added to a list that doesn't exist.
To do the uploading you should look at the Background Transfer API. Specifically the BackgroundUploader class.
There's even a sample. (sample is for Win8.1 but should work with minimal modification.)
update - based on coments
I don't know how Dropbox do it (they may have special privileges not available to every developer) but you could create the functionality to upload newly taken photos by having a background task based on a timed event that checks for new files in the camera roll and uploads any it finds.
this feature is only supported by Silverlight app model, not Universal Windows Platform model.
You might want to use the OneDrive SDK to upload your photo/video to the Cloud https://github.com/onedrive/onedrive-sdk-csharp