Re: What does powerapps run off of when using a mobile powerapp?
Hi @Anonymous
I'm not sure about PowerApps running in a VM, but I think that PowerApps operates in a way that's different to how you might imagine.
On a mobile device, the user installs the IOS or Android player on their device. This player app loads the PowerApp that the user wants to run. Once the app loads, it will run locally on the device. At runtime, PowerApps will connect to whatever web services that it requires to retrieve data and to carry out other server related tasks.
Because the app runs mostly on the client, this provides PowerApps with offline working capabilities. Both the mobile and web based players use JavaScript to run apps. Often, app builders might attempt to retrieve data using queries that cannot be executed on the server (ie, a non delegable query). In this instance, the client will carry out the filter or search operation locally. This is a typical example of the client performing a resource intensive operation.
Does that sort of answer your question?