Jonathan Bones

Results 6 comments of Jonathan Bones

Fixes the issue for me. Many thanks!

Hi @Danesz 👋🏼 I created this PR to fix a deprecation warning with openURL and also add Swift support to the package. Swift is more standard nowadays in the iOS...

Hi all so I encountered a similar issue. In my case the issue was caused by having previously installed (then later uninstalled) node via `homebrew`, which meant that an outdated...

That's great, worked for me too! For anyone else experiencing this issue, the following code must be added to the android/build.gradle file (beneath allprojects {...}) ``` subprojects { project.configurations.all {...

Hi @pradipaub36 👋 I also encountered the same issue when archiving my Xcode project. In my case, I fixed the issue by adding the following lines to my `Podfile` to...

Hi all 👋 I solved this issue by making the following change in the `node_modules/react-native-code-push/android/codepush.gradle` file: ```groovy // Broken 💥 def debuggableVariants = config.debuggableVariants.get() ?: ['debug'] // Fixed ✅ def...