Skip to content

Commit 50e8c46

Browse files
committed
Remove App Center and relevant stuff from the mx9 and mx10 docs
1 parent cc20daa commit 50e8c46

File tree

20 files changed

+13
-519
lines changed

20 files changed

+13
-519
lines changed

content/en/docs/refguide/mobile/building-efficient-mobile-apps/logging.md

-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@ The following log nodes are used by Mendix when writing log messages:
7878

7979
| Log Node | Description |
8080
| --- | --- |
81-
| Client_AppCenter| Logs messages related to the state and phases of over-the-air updates by App Center. |
8281
| Client_Auth | Logs messages related to the different authentication states and user actions.|
8382
| Client | The default log node when no log node is provided. |
8483
| Client_Database | Logs messages related to different read/write operations on the local database. |

content/en/docs/refguide/mobile/distributing-mobile-apps/building-native-apps/_index.md

-3
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@ Many of these guides use the Mendix Native Mobile Builder UI tool included in Me
1717

1818
* [Build a Mendix Native App Locally](/refguide/mobile/distributing-mobile-apps/building-native-apps/native-build-locally/) – Follow this guide to build your apps locally using the Mendix Native Mobile Builder.
1919
* [Build a Mendix Native App Locally Manually](/refguide/mobile/distributing-mobile-apps/building-native-apps/native-build-locally-manually/) – Follow this guide to build your apps locally and without an internet connection.
20-
{{% alert color="warning" %}}
21-
Building mobile apps with App Center is deprecated and will be removed on March 30, 2025. Learn more about the new and improved ways to build mobile apps with Bitrise in [our documentation](/refguide/mobile/distributing-mobile-apps/building-native-apps/bitrise/).
22-
{{% /alert %}}
2320
* [Build a Mendix Native App in the Cloud](/refguide/mobile/distributing-mobile-apps/building-native-apps/deploying-native-app/) – Go from a blank slate to an app running on a device.
2421
* [Create a Custom Developer App](/refguide/mobile/distributing-mobile-apps/building-native-apps/how-to-devapps/) – Create a custom developer app (a substitute for the Make It Native app) which accommodates custom dependencies such as native widgets or fonts.
2522
* [Native Template](/refguide/mobile/distributing-mobile-apps/building-native-apps/native-template/) – The Native Template describes the native dependencies your app needs, and it includes two native apps (one for iOS and one for Android) that can be independently built to create the finished apps.

content/en/docs/refguide/mobile/distributing-mobile-apps/building-native-apps/deploying-native-app.md

-251
This file was deleted.

content/en/docs/refguide/mobile/distributing-mobile-apps/building-native-apps/how-to-devapps.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ A custom developer app helps you by serving as a replacement for the Make It Nat
3636

3737
1. Click the *Build developer app* button
3838

39-
1. The tool will set up your GitHub repository commit your changes, configure App Center if needed with two new apps, one for iOS and one for Android and continue with building the apps.
39+
1. The tool will set up your GitHub repository commit your changes, one for iOS and one for Android and continue with building the apps.
4040

4141
{{< figure src="/attachments/howto/mobile/native-mobile/distribution/build-native-apps/deploying-native-app/build-release-app-build-step1.png" alt="Building" width="350" class="no-border" >}}{{< figure src="/attachments/howto/mobile/native-mobile/distribution/build-native-apps/deploying-native-app/build-release-app-build-step1.png" alt="Building" width="350" class="no-border" >}}
4242
{{< figure src="/attachments/howto/mobile/native-mobile/distribution/build-native-apps/deploying-native-app/build-release-app-build-step2.png" alt="Build release app" width="350" class="no-border" >}}

content/en/docs/refguide/mobile/distributing-mobile-apps/building-native-apps/native-build-locally.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ To set up your local app, do the following:
4949
1. In the **Build type** make sure the **Local** option is selected.
5050
{{< figure src="/attachments/howto/mobile/native-mobile/distribution/build-native-apps/native-build-locally/wizard-buildtype-local.png" alt="Build type" width="350" class="no-border" >}}
5151
1. Select the folder for your app's Native Template. Valid choices are an empty directory or a directory with an existing Native Template.
52-
1. Disable any service you do not wish to use. App Center requires GitHub as a service to work.
52+
1. Disable GitHub service if do not wish to use.
5353
1. Click **Next Step** until you reach the end of the wizard. Feel free to configure any step as needed.
5454
1. Select **Build type** from the side bar.
5555

content/en/docs/refguide/mobile/distributing-mobile-apps/building-native-apps/native-template.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -650,8 +650,7 @@ A CI environment needs to be able to do the following to successfully configure
650650
* Set up the configuration and move assets as needed (this can be done with simple shell scripts or any other solution, and is the implementer's choice)
651651
* Run `npm i` and `npm run configure` to configure the app using Mendix Mobile Toolkit before the build.
652652

653-
How to build the apps is a choice for the implementer. Mendix Native App Builder use App Center for convenience. There are multiple other
654-
solutions, on premise or as a service, that can be used for this purpose. We do not endorse one over the other.
653+
How to build the apps is a choice for the implementer. There are multiple solutions, on premise or as a service, that can be used for this purpose. We do not endorse one over the other.
655654

656655
## Read More
657656

content/en/docs/refguide/mobile/distributing-mobile-apps/use-min-older-sp.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@ If using Native Builder UI (which also creates native apps to use for testing),
367367
1. In Studio Pro, click **App** > **Build Native Mobile App**.
368368
1. Click **Configure app for local building**.
369369
1. (Build type) Select a disk location for the native app source code.
370-
1. (Build type) Disable GitHub and App Center cloud services.
370+
1. (Build type) Disable GitHub.
371371
1. (Splash screens / App icon / Custom fonts) Use the default splash screen and app icons and no custom fonts (because we need the JavaScript bundle and project assets, this step isn't important but required).
372372
1. (App details) Select **Portrait** and **Landscape** for app's **orientation selection**.
373373
1. (App details) Select **Phones** and **Tablets** for app's **Device targets selection**.

content/en/docs/refguide/mobile/getting-started-with-mobile/prerequisites.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Native mobile apps are not run in the device browser like web-based Mendix apps.
3232
* **Build Native App**: For building native apps, we provide a tool called Build Native App. This tool must be configured and run each time a new build is created. Build Native App is not supported on Studio Pro for Mac. Build Native App updates itself automatically by downloading new versions from AWS.
3333
* **Native Template**: Build Native App needs to download the Native Template from [GitHub](https://github.com/mendix/native-template). This template contains the React Native project that is used to build the native app for iOS and Android.
3434
* **Dependencies**: The Native Template makes use of several open-source projects, including React Native. These must be downloaded from several external services including npm, gradle, and Cocoapods.
35-
* **Building**: Once prepared using Build Native App, the Native Template can be built for each target mobile operating system. Building can be done [locally](/refguide/mobile/distributing-mobile-apps/building-native-apps/native-build-locally/) by downloading the mobile operating system's IDE or [remotely](/refguide/mobile/distributing-mobile-apps/building-native-apps/deploying-native-app/) using a third-party continuous integration and delivery (CI/CD) platform. For building remotely, a [GitHub account](https://github.com/) and an [App Center account](https://appcenter.ms/) is required.
35+
* **Building**: Once prepared using Build Native App, the Native Template can be built for each target mobile operating system. Building can be done [locally](/refguide/mobile/distributing-mobile-apps/building-native-apps/native-build-locally/) by downloading the mobile operating system's IDE or [remotely](/refguide/mobile/distributing-mobile-apps/building-native-apps/bitrise/) using a third-party continuous integration and delivery (CI/CD) platform. For building remotely, a [GitHub account](https://github.com/) is required.
3636
* **Deploying**: Most mobile devices refuse to install APK/IPA files without additional steps. At minimum, the file must be signed to identify its developer and prevent manipulation. Furthermore, for iOS and recent versions of Android, the app must be published via the official mobile operating system's store or a mobile device management (MDM) system.
3737
* **Connectivity**: When running a Mendix native mobile app, it must connect to the Mendix Runtime at least once during startup. If no connection can be established, an error is shown. Connectivity is also needed to run microflows and to synchronize data.
3838

@@ -50,7 +50,6 @@ For building:
5050
* Determine which native template version to download: `https://raw.githubusercontent.com/mendix/native-template/master/mendix_version.json`
5151
* Download the native template from GitHub: `https://github.com/mendix/native-template/archive/refs/tags/*.zip`
5252
* Upload the project to GitHub (optional): `https://api.github.com/`
53-
* Start App Center Pipeline (optional): `https://api.appcenter.ms/v0.1/`
5453

5554
In some situations, it can be beneficial to designate a single machine for building native mobile apps or outsourcing the process to a partner.
5655

content/en/docs/refguide9/mobile/building-efficient-mobile-apps/logging.md

-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@ The following log nodes are used by Mendix when writing log messages:
7878

7979
| Log Node | Description |
8080
| --- | --- |
81-
| Client_AppCenter| Logs messages related to the state and phases of over-the-air updates by App Center. |
8281
| Client_Auth | Logs messages related to the different authentication states and user actions.|
8382
| Client | The default log node when no log node is provided. |
8483
| Client_Database | Logs messages related to different read/write operations on the local database. |

0 commit comments

Comments
 (0)