Results 10 comments of Jordan Daniels

What version of React Native, react-native-push-notification, react-native-simple-alarm, @react-native-community/async-storage @react-native-community/push-notification-ios are you using?

@ameya-linge hmm, this was working in the past, I'll take a look into this

@ameya-linge yep, you're right, repeating push notifications in specific intervals isn't supported in iOS. Will need to think of a workaround for this

@hcphuc2595 I'll take at the android error

I had a similar issue with a non-expo project. ``` Warning: The 'kotlin-android-extensions' Gradle plugin is deprecated. ``` Solution was to go to node_modules/react-native-plaid-link-sdk/android/build.gradle, and add: ``` android { buildFeatures...

Getting this as well: The following build commands failed: PhaseScriptExecution ... in target 'FBReactNativeSpec' from project 'Pods' command failed with exit status 65 xcode 14.1.x, on macOS 13.2 (Ventura) M1...

Was able to resolve this by installing the [nvm version step](https://bitrise.io/integrations/steps/nvm) and using node version 16.19.0.

I recall having this issue as well. If there can be an id for each sound recording, then a specific sound recording could easily be selected.

Looks like an issue for https://github.com/FaridSafi/react-native-gifted-chat/issues

What worked for me was, in ios/Podfile, add: ``` target 'YourTargetName' do inherit! :complete end ``` Seems like there's an issue with XCode finding the location of RCTAppDelegate.h without it.