Install a store app in Windows 10 iot - microsoft-metro

Is it possible to push a store app such as iheartradio into windows 10 iot or do I have to write my own?
I looked around but so far there are no examples on how to push an existing store app to iot.

As of now the Windows IoT Core is not managed, nor store apps can be deployed on the IoT core.
You can deploy an Appx that you have on to the IoT Core yourself. Note: Not everything that works on Windows Store will work on IoT Core; especially any Store APIs leveraged.
I have deployed a few XAML Apps across Windows 10 PC, Windows 10 mobile and IoT core. Let me know your requirement.

You cannot install apps FROM the microsoft app store (not even with IoT Core Pro), but you can request permissions to DOWNLOAD your store app from the developer dashboard (the real appx package, signed with MS store codesigning cert) if you are a registered Pro (OEM) customer...
This officially signed appx package can then be updated via the app store (in contrast to the self-signed package that you can deploy via visual studio or device dashboard;; which runs fine but can NOT be updated via the microsoft app store).
You can also use the new azure IoT DM library to push appx packages from azure storage to your IoT device(s), this should also work with the IoT Core edition.
see https://github.com/ms-iot/iot-core-azure-dm-client/blob/develop/docs/application-management.md
regards

Apparently this is now kind of possible with the latest IoT Core Update, but only for Pro customers.
Microsoft makes it easy for OEMs to install and service UWP apps on Windows 10 IoT Core through the Universal Store. All store signed apps on Windows 10 devices are capable of receiving updates directly from the store.
Article

Related

Is there a internet permission command to be added in the Windows Folder of the Flutter Application for internet usage?

I am developing a simple flutter application for my manufacturing facility, where we want to input the stock ids of the raw materials which were used to develop the product. I made a simple Flutter Application with Windows and macOS and Android & IOS enabled while initiating the project in Android Studio. I am using Mysql1 dependency from pub dev to avoid writing large amounts of backend and use other frameworks.
Furthermore, I also added internet permission for the app in the Androids folder. However, when I was trying to do it on the windows app, the MySQL query would not go through. The MySql server is hosted on Digital Ocean. I entered the exact details,
But works on the android phone and not on windows applications. Do we need to add any same permission line in the Windows Folder?
I installed the application on my physical, it is perfectly sending the data to the MySQL table in the DigitalOcean server. However, doesn't seem to do the same in the windows application. I want it to run the query the same as in the windows desktop app as in the android app.
Any help would be appreciated,
Thanks and Regards.

How we can publish flutter app on app store from windows

I Develop a flutter application, I am a Windows user. I don't have a MacBook, so is there any way to publish the flutter app on the app store using windows?
You can't build or publish iOS from Windows or any other system except MacOS. If you have no mac take a look at cloud services that can dedicate one to you (e.g. MacStadium). CI/CD services like CodeMagic, AppCenter is an option too, it is more suitable for small or pet projects when you don't need to build iOS often.

How to deploy an Windows 8 app with Microsoft Intune

I'm trying to deploy an application developed for WinRT devices (for tablets and convertible devices 2 in 1, not for Windows Phone devices).
I want that the client devices having an automatic instal·lation (that user doesn't need to do nothing to install the app).
I have opened a demo Intune account, and when I try to publish the app, the options that there are available are: "Required Install", "Uninstall" and "Available".
When in Intune I try to deploy an app, the assistent says: "When the approval action is either Required Install or Uninstall, this app be applicable only to mobile and does not apply to client computers".
It's possible to deploy an WinRT/Metro application without user intervention?
When Microsoft is talking about client computers in Intune they actually mean PCs managed by the Intune agent.
On PCs managed through the MDM Channel you should be able to deploy Appx required and the app is pushed down.

Missing platform support?

I want to connect an existing PhoneGap application to a newly created mobile service in Azure, but in the dashboard for the service I'm only presented with these three choices for the "Choose A Platform" option:
Windows Store
Windows Phone 8
iOS
Where is Android, HTML/JavaScript, Xamarin and the new PhoneGap option?
I take that you created a new mobile service using the new .NET backend. For now, the quickstart (starter) projects for that platform are only available in the four versions you see there (WinStore C#, WinStore JS, WinPhone 8 C#, iOS Objective-C), and others will be added soon.
However, the backend still supports other platforms (HTML/JS, PhoneGap, Android, Xamarin), it's just that we don't have the starter projects for those in the portal yet. You can take one of the supported ones, download the server project, and create the client project to talk to it.
Again, all supported platforms will get their quickstart projects added soon.

Blackberry: Access Blackberry desktop manager and install application programmatically

I want to know using my desktop application can i access Blackberry desktop manager (or) any USB interface programmatically to load(install) a blackberry application into blackberry device? Basically i want to load(install) any blackberry developed application to the device using my desktop application interface.
Any help would be appreciated.
Thank you.
There is no BB Desctop API to install application:
BlackBerry Desktop Software - 4.1 - Desktop API Reference Guide
Similar questions:
Install/Uninstall App from Desktop Manager
SO - How to properly force a Blackberry Java application to install using Loader.exe
BB Forum - How to properly force a Blackberry Java application to install using Loader.exe
UPDATE
You can send data to device, but to open named channel you will need running application on device side which will register and operate with same-named channel... although there are speculation about "using RIM API calls to compose *.cod file directly in device internal memory." I have no idea how to do this without installing any app on device previously.