Jonas

Results 4 comments of Jonas

@bratelefant see my comment in https://github.com/meteor/meteor/issues/11811#issuecomment-1113957240, maybe this fixes it?

@delki8 `cordova-plugin-meteor-webapp` does not use `cordova-ios` directly. `cordova-ios` is rather installed by `meteor add-platform ios` (along with other Cordova packages). Currently, I'm applying these fixes by hand, meaning: I build...

OK, so I finally found a workaround: Adding the `` element via JavaScript did the trick. Example: ```js document.getElementById('outer-div').innerHTML = ` `; ``` I've added the workaround to the [replication...

Only for Expo users: I created a[ drop-in replacement](https://github.com/JH7/react-native-device-info) that uses Expo's expo-application behind the scenes. It currently only supports getVersion, getBuildNumber, getBundleId and getApplicationName. Feel free to copy it...