How to use the "Print()" function on iOS | How to bypass iOS "Universal Links" (open in browser instead of app)

April 1, 2025 by
How to use the "Print()" function on iOS | How to bypass iOS "Universal Links" (open in browser instead of app)
Andrew Valenzuela
| No comments yet

Oh iOS, why you so user-friendly?

This is how to bypass iOS's "User Friendly Interface" so that you can print from Power Apps.

Steps:

  1. Install MS Edge Browser:  https://apps.apple.com/us/app/microsoft-edge-ai-browser/id1288723196
    1. Safari cannot render the printing.... but Edge can.
    2. Be sure to set edge to your default browser in iOS.
  2. Create a link set to launch the Power App in the browser.
  3. Create a shortened or a redirected URL (if you don't then the app is forced to launch in the mobile application).
  4. Create a button that only shows when the app is open in the mobile application.
    1. Insert the link in a Launch()​with the short URL in that button.

Creating the link:

Click on "Settings" in your power app studio (or just look at the app data, we just need the app guid).  

Click on "Session Details":

Now copy the App ID​:

Now create the url:

https://apps.powerapps.com/play/{App ID}?hideNavBar=true

That parameter at the end (the stuff that follows the "?") will hide the ugly navbar you get when you use an app in the browser.

Create a URL redirect or shortened url:

You have to do this to prevent iOS from redirecting your app to the installed Mobile Application.  

They use something called "Universal Links":  https://developer.apple.com/documentation/xcode/allowing-apps-and-websites-to-link-to-your-content

My installation of Odoo comes with a link-tracker (creates URL redirects or shortened URLs.... same thing basically).  Here is a free one you can use:  https://www.shorturl.at/

If you want to know more about Odoo:   Click here, I can hook you up



Create the Launch()​ function:

Instead of this:

Use the short URL:

Make the button only visible when open in the Power Apps Mobile application:

Change the Visible​ property of the button to this:

The Host.{}​ value gives you some useful info, one of which is the current app you're using to view the Power App.

It's a good practice to have a small app built that just gives you the basic info from the Host.{}​ value.

Here is the code for that gallery:

Ok, now that all this is done.  When you open the app you'll now see:

You'll have to click Open in Browser


How to use the "Print()" function on iOS | How to bypass iOS "Universal Links" (open in browser instead of app)
Andrew Valenzuela April 1, 2025
Share this post
Archive
Sign in to leave a comment