react-native-unity icon indicating copy to clipboard operation
react-native-unity copied to clipboard

How can we skip the iOS-simulator build and build other parts of the application

Open Emex4gman opened this issue 7 months ago • 0 comments

Image

I know @azesmway/react-native-unity will not work for iOS-simulator. Is there a way to skip the linking and compile for the iOS simulator so I can continue developing other parts of the application?

I tried to update my react-native.config.js

module.exports = {
  dependencies: {
    '@azesmway/react-native-unity': {
      platforms: {
        android: null,
        ios: null,
      },
    },
  },
};

Image

But the app keeps crashing on launch

Emex4gman avatar Apr 15 '25 02:04 Emex4gman