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

  1. Go to your Mass Mobile Apps Admin Dashboard.

  2. Open the app you want to edit.

  3. Navigate to Features → Info Tab.

  4. In the content editor, switch to HTML mode (if applicable).

  5. 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>
  1. Replace 864-271-5333 with the phone number you want to use.

  2. 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.