Build a Mendix Native App in the Cloud

Last modified: February 7, 2024

1 Introduction

This guide teaches you how to go from a blank slate to an app running on a device.

The Mendix Native Mobile Builder is the UI tool to set up and build your Mendix Native Mobile Apps. It is directly accessible in Mendix Studio Pro 8.15 and above for all apps with a native mobile navigation profile.

2 Prerequisites

Before starting this guide, make sure you have completed the following prerequisites:

  • Install the latest MTS version of Mendix Studio Pro using the online installer. The offline installer does not include the Mendix Native Mobile Builder dependency.
  • Read Get Started with Native Mobile to see how to create, style and debug an application with Mendix Studio Pro
  • Deploy your native mobile app to the cloud via Studio Pro and have the cloud address of your deployed application available
  • A GitHub account.
  • An App Center account. Mendix recommends a paid account if you will be building and deploying regularly.

2.1 Platform-Specific Prerequisites

If you plan to deploy your app for testing on an iOS device, make sure you have completed the following prerequisites:

  • Register for an Apple Developer Account
  • Have an iOS device for testing the iOS package that will be produced
  • Have an iOS deployment certificate and a provisioning file for which your device is activated
  • Have Xcode installed on your computer for deploying the iOS package to your test device

If you plan to deploy your app for testing on an Android device, make sure you have an Android device available.

3 Getting Your Tokens

To use the Mendix Native Mobile Builder, you will first need to get tokens to authenticate with GitHub and App Center. If you already have tokens for your GitHub and App Center, you do not need to complete the Getting Your Token sections.

3.1 GitHub Token

  1. Go to GitHub and sign in.
  2. Go to Settings by clicking your profile picture in the upper-right corner of the page.
  3. Click Developer settings at the bottom of the left menu.
  4. Navigate to Personal access tokens and then click Generate new token to create a new personal access token.
  5. In the Note field, write Mendix Native Mobile Builder.
  6. Under Select scopes, select repo and workflows.
  7. Click Generate token.
  8. Store your token in a secure place. You will not be able to see it again. If you lose it, you will have to create a new token and delete your old one.

3.2 App Center Token

  1. Go to App Center and sign in.
  2. Click your profile icon in the upper-right corner, then click Settings, and then Account Settings.
  3. In the API Tokens tab, click New API token.
  4. Add a description of your token, select Full Access, then click Add new API token, and then New API Token.
  5. Store this token in a secure place as well. You will not be able to see it again. If you lose it, you will have to create a new token and delete your old one.

4 Building Your Native App

From Studio Pro:

  1. Click App > Build Native Mobile App:

    Start Mendix Native Mobile Builder
  2. When Mendix Native Mobile Builder launches you will see the home screen:

    Mendix Native Mobile Builder Home Screen
  3. Select Build app for distribution.

  4. Fill in your app’s name and the app identifier. The wizard provides defaults, but you might want to align the app identifier to use your company’s reversed URL, or change the app name in some other way:

    Wizard App Details
  5. Click Next Step when ready.

  6. In the Build Type screen fill in your GitHub and App Center API tokens. The tool will verify the tokens grant sufficient access to valid accounts and will notify you if they do not:

    Wizard Tokens
  7. Click Next Step when ready.

  8. Select Choose your icon if you already have an image you would like to use as an icon. If you continue without adding a custom image, your app will use the default images displayed below. You can change app icon later if you wish:

    Wizard Icons
  9. Click Next Step when ready.

  10. Select Choose your splash screen if you already have an image you would like to use as a splash screen, or just continue if you are satisfied using the default image. You can change the splash screen later if you wish:

    Wizard Splash screen
  11. Click Next Step when ready.

  12. Drag your custom fonts into the field if you already have a selection of fonts you would like to use, or continue if you do not need to add custom fonts. You can add custom fonts later if you wish:

    Wizard Fonts
  13. Click Next Step when ready.

You have completed the mandatory basic app configuration required to build your app. Now you see the Build app for distribution screen:

Build release app

Next, do the following:

  1. Fill in an intentional version number. For defaults, Mendix recommends using these numbering guidelines:

    • Versions lower than 0.5.0 for alpha releases
    • Versions ranging from 0.5 to 0.9.x for beta releases
    • Versions starting from 1.0.0 for release
  2. Fill in your Runtime URL. It can be the IP of your local machine if you plan on testing against a locally-running Studio Pro installation. If you already deployed your app to Mendix Cloud, you can point it to the URL of the deployed runtime as found in Cloud Portal (for example, https://yourapp.mendixcloud.com).

  3. Click the Build button to start the build.

  4. The tool will set up your GitHub repository, commit your changes, configure App Center with two new apps (one for iOS and one for Android), and continue building your apps:

    Setting up build prerequisites
    Setting up build prerequisites
    Building release app

  5. After the build completes you can scan the QR code provided to install the app on your device. Currently the QR code service is only supported for Android devices:

    Build completed

5 Signing Your Apps

By default, App Center builds are unsigned and cannot be released on the Google Play Store or the Apple App Store. To release your apps, you must provide your signature keys to Mendix Native Mobile Builder. Signature keys prove the authenticity of your app and prevent forgeries. For more information to how to acquire these keys, see the Managing App Signing Keys Guide.

5.1 Setting Up Signing for iOS

iOS supports two types of signing configurations: Development and Release. The type of the build depends on the type of provisioning file and certificate that was used for configuring the tool. To set up signing for iOS, follow these steps:

  1. From within Mendix Native Mobile Builder, select iOS under Certificates:

    Build release app
  2. Upload your provisioning file and P12 certificate, and then type in your password. The tool will verify that:

    • The app identifier of the app is included in the Provisioning file
    • The Certificate is included in the Provisioning file
    • The password can unlock the certificate

    If the tool errors, please correct the issue and try again:

    Signing iOS
  3. Click Save.

With that you have completed setting up signing for iOS. Your next build will use the provided configuration to sign your iOS app.

5.2 Setting Up Signing for Android

  1. From within Mendix Native Mobile Builder, choose Android under Certificates:

    Build release app
  2. Upload your keystore file and provide the keystore password, the key alias and the key password as defined when setting up the keystore. The tool will verify that:

    • The keystore password is valid
    • The key alias exists in the provided keystore

    If it errors, please correct the issue and try again:

    Signing iOS
  3. Click Save.

With that you have completed setting up signing for Android. The next build will use the provided configuration to sign your Android app.

6 Distributing

This section will guide you in distributing your binaries, setup, signing for iOS and Android using your release certificates and keystore, and building your binaries.

For distributing to a specific platform, consult the appropriate section below:

6.1 Distributing the iOS app to App Store Connect

Depending on whether you chose to sign your iOS app or not, the output of the build will be an IPA or XCArchive file, respectively. IPA files can be directly distributed to App Store Connect for further processing. XCArchives require XCode to sign and generate an IPA before they can be further processed.

6.1.1 Distributing a Signed IPA

To be able to upload your app to App Store Connect, you will have to have set up a new app using the App Store Connect website. While there, use the app name and app id you used to build your app. For further instruction, see the App Store Connect Guide to adding a new app.

When signing your iOS app, an IPA file is generated. To upload an IPA to the Apple App Store, XCode includes a command line tool. Assuming XCode is installed and the extra command line tool is set up, the command to upload the IPA is the following:

1
2
xcrun altool --upload-app --type ios --file "path/to/application.ipa"
--username "YOUR_APPSTORE_USER_EMAIL" --password "YOUR_APPSTORE_PASSWORD"

Replace file "path/to/application.ipa" with the absolute path to your IPA file, username with your developer app store email address, and password with your Apple App Store password.

The command will first verify your IPA is packaged correctly and ready to be shipped, and then will then upload it to TestFlight for further processing.

6.1.2 Distributing an Unsigned XCArchive

Local signing is useful if you only want to test your app on a device, or you do not have a distribution certificate and have run out of build minutes on App Center when signing with a developer certificate.

In order to deploy the nativeTemplate.xcarchive on a device or on the Apple App Store, an Apple developer account and development team is required. If one is available, do the following:

  1. Using Xcode, double-click the nativeTemplate.xcarchive file. It should open with the built-in Application Loader software.

  2. Click the Distribute App button to start the local signing flow:

    Xcode Application loader
  3. Select Development:

    Xcode Application loader
  4. Choose a Development Team:

    Xcode Application loader
  5. Configure your Development distribution options:

    Xcode Application loader
  6. Select a re-signing option:

    Xcode Application loader
  7. Review your .ipa content and click Export:

    Xcode Application loader

Congratulations. You now have a signed .ipa file:

Xcode Application loader

6.2 Distributing the Android app to Google Play

A signed Android APK can be uploaded to Google Play store directly. For more info on setting up a new app and uploading your binaries follow Google’s guide on Uploading an app.

7 Read More