If you want users to tap a phone number and call directly from your app, you can easily do this in the Info Tab using a small piece of HTML code.
Step-by-Step Instructions
Go to your Mass Mobile Apps Admin Dashboard.
Open the app you want to edit.
Navigate to Features → Info Tab.
In the content editor, switch to HTML mode (if applicable).
Insert the following code anywhere you want the clickable phone number to appear:
call <a href="tel:864-271-5333" target="_blank">864-271-5333</a>
Replace 864-271-5333 with the phone number you want to use.
Save your changes and refresh the app preview.
What This Does
The href="tel:..." automatically triggers the phone dialer when tapped.
The number appears as normal text, but is fully clickable.
Works on both iOS and Android devices.
Tip: Format Multiple Numbers
Simply repeat the same HTML snippet for each number you want to display.