Skip to content

Commit dbd44d0

Browse files
authored
Merge pull request #894 from mendix/revert/fix/MOO-1526/remote-js-debugging-not-working-9.24.x
Revert "Merge pull request #876" [9.24]
2 parents cefac96 + 48da6b7 commit dbd44d0

File tree

8 files changed

+617
-58
lines changed

8 files changed

+617
-58
lines changed

.github/workflows/ios-build-custom-dev-app.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,30 +12,25 @@ jobs:
1212
runs-on: macos-latest
1313

1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v2
1616
- name: switch XCode to 14.3.1
1717
run: |
1818
sudo xcode-select -s /Applications/Xcode_14.3.1.app
19-
2019
- name: actions/setup-node
2120
uses: actions/setup-node@v3
2221
with:
2322
node-version: "16.14.2"
24-
2523
- name: npm install
2624
run: npm ci
27-
2825
- name: pod install
2926
run: pod install
3027
working-directory: ./ios
31-
3228
- name: appcenter prebuilt script test
3329
shell: bash
3430
working-directory: ./
3531
run: |
3632
chmod +x ./appcenter-pre-build.sh
3733
APPCENTER_XCODE_SCHEME="nativeTemplate" APPCENTER_SOURCE_DIRECTORY="./" IS_DEV_APP=False ./appcenter-pre-build.sh
38-
3934
- name: iOS Build Action
4035
uses: yukiarrr/ios-build-action@v1.5.0
4136
with:

CHANGELOG.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
## [Unreleased]
88

9-
- We have resolved an issue where remote JavaScript debugging failed in a custom-built Mendix Native Developer App, leading to crashes when enabling “Remote JS Debugging.” The problem was caused by Firebase services not being initialized properly during the build process. We have ensured that Firebase dependencies are now only included when explicitly required by the application.
10-
119
- We have updated `react-native-permissions` to version `3.6.1`.
1210

1311
# [7.0.17] - 2024-09-03

ios/Podfile

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def common_pods
2323
#
2424
# Note that if you have use_frameworks! enabled, Flipper will not work and
2525
# you should disable the next line.
26-
# :flipper_configuration => FlipperConfiguration.enabled(["Debug"], {'Flipper' => '0.189.0' , 'Flipper-DoubleConversion' => '1.1.7'}),
26+
:flipper_configuration => FlipperConfiguration.enabled(["Debug"], {'Flipper' => '0.189.0' , 'Flipper-DoubleConversion' => '1.1.7'}),
2727
# An absolute path to your application root.
2828
:app_path => "#{Pod::Config.instance.installation_root}/.."
2929
)
@@ -40,15 +40,13 @@ def common_pods
4040
pod 'Permission-Camera', :path => "#{permissions_path}/Camera"
4141
pod 'Permission-PhotoLibrary', :path => "#{permissions_path}/PhotoLibrary"
4242

43-
# The pods listed in this section are essential for the application to function correctly.
44-
# These pods are added by Native Builder UI (NBUI) and should not be modified under any circumstances.
45-
# Do not make any changes to the pods in this section.
46-
# REQUIRED PODS START
47-
4843
# Required MendixNative dependency
4944
pod 'SSZipArchive'
5045

51-
# REQUIRED PODS END
46+
# Required for Push notifications
47+
pod 'Firebase', :modular_headers => true
48+
pod 'FirebaseCore', :modular_headers => true
49+
pod 'GoogleUtilities', :modular_headers => true
5250
end
5351

5452
def patch_flipper_xcode_15_3

ios/nativeTemplate.xcodeproj/project.pbxproj

Lines changed: 90 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)