Erik Ziegler

Results 98 comments of Erik Ziegler

I updated the code to reflect the latest initial setup of RN 0.74.0 setup (see [here](https://raw.githubusercontent.com/react-native-community/rn-diff-purge/release/0.74.0/RnDiffApp/ios/RnDiffApp/AppDelegate.mm)). Before that, we could initialize the bridge ourself and assign the delegate using ```objc...

Looking into Expo the next couple of days, but have not much experience with it yet. My knowledge was that you have no direct access to `AppDelegate.m` or any platform...

Adding `extraModulesForBridge` (not overwriting `createBridgeWithDelegate`) on Expo 52 (52.0.20) seemed to work for me ```javascript function addExtraModulesForBridge(contents) { const extraModulesForBridge = ` - (NSArray *)extraModulesForBridge:(RCTBridge *)bridge { return [[MyKotlinRNModules alloc]...

Not sure if it is actually something upstream, I'll try it out sometime.

They seem to have bricked it again. `extraModulesForBridge` worked in `52.0.20` but in `52.0.35` it is not called.

Others seem to have the same problem with Compose views inside of `` on Android: https://github.com/react-native-community/discussions-and-proposals/issues/446#issuecomment-1645470527

@alphanogn How come your approach is so simple and works for all iOS versions (I tested 26, 18.2, 17.5) while the original one is so much more complex? For my...

@Cedric-bemobile Your solution worked for me, thank you so much!