rns-nativecall 0.9.0 → 0.9.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rns-nativecall",
3
- "version": "0.9.0",
3
+ "version": "0.9.1",
4
4
  "description": "High-performance React Native module for handling native VoIP call UI on Android and iOS.",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -211,6 +211,7 @@ module.exports = (config, props) => {
211
211
  return withPlugins(config, [
212
212
  withAndroidConfig,
213
213
  withMainActivityDataFix,
214
+ withIosAppDelegateMod, // <--- ADDED THIS HERE
214
215
  [withIosConfig, props]
215
216
  ]);
216
217
  };