Issue I am getting the following error after using npm install @react-native-firebase/dynamic-links. I am not able to solve this issue, any solutions? D:\myapp\node_modules\@react-native-firebase\dynamic-links\android\src\main\java\io\invertase\firebase\dynamiclinks\ReactNativeFirebaseDynamicLinksModule.java:227: error: cannot find symbol Bundle linkUtmParameters = linkData.getUtmParameters(); ^ symbol: method getUtmParameters() location: variable linkData of type
Continue readingTag: react-native
expo ImagePicker doesn't pick animating gif in android
Issue I am trying to select gif files using expo-image-picker. However, it doesn’t select the gif file in android, it selects the first frame of the gif even when quality is set to undefined and allowsEditing to false. Version of
Continue readingHow to add only new items to array ReactNative
Issue I’m working with Bluetooth in my ReactNative app. I’m trying to create UI for discovered devices. For working with BT I use library react-native-ble-plx and method: startDeviceScan( UUIDs: UUID[] | null, options: ScanOptions | null, listener: (error: BleError |
Continue readingreact-native app successfully installs but won't open after updating react-native-onesignal
Issue I’m making an application in react native and I need to update it to use version 31 of the Android SDK due to the requirements of the Google Play Store. I was using version 30. When trying to update
Continue readingSentry React Native Crash – Native Client is not available, can't start on native
Issue I am getting crash on app launch in android with below error. Native Client is not available, can’t start on native. Sentry.init({ enableNative: true, enableNativeCrashHandling: true, dsn: ‘https://xyx.com/sentry/12’, }) When I set enableNative: false, then the crash stops coming
Continue readingGetting Text Selection from Other Apps to My App
Issue I am learning React Native by building a project and using Expo. I am trying to show my app in the context menu whenever the text is selected in other apps i.e browser, messaging, etc. On tapping my app,
Continue readingBuild failing after installing react-native-image-crop-picker
Issue I have installed react-native-image-crop-picker, upon installing when I try to start the build am receiving the following error: * What went wrong: Execution failed for task ‘:app:processDebugResources’. > A failure occurred while executing com.android.build.gradle.internal.tasks.Workers$ActionFacade > Android resource linking failed
Continue readingHow to store/save data in react native
Issue How to store/save data in react native.Like we use shared-preference in android, is there any solution for react native.I am new to react-nactive. please add sample example Solution You can use React Native AsyncStorage for storing data to local
Continue readingReact Native Expo – Recover Android kestore(.jks) file from password and alias
Issue I misunderstood the purpose of the android keystore (the .jks file) and deleted the file from my computer. However before deleting it, I saved these 3 values: Keystore password Key alias Key password Is it possible to recover or
Continue readingHow to change remote push notification icon for React Native(android) application
Issue I have followed this link for push notification implementation within my app https://github.com/zo0r/react-native-push-notification/tree/a359e5c00954aa324136eaa9808333d6ca246171 at present the default app launcher icon is displayed. I want to change it. Is there any way to do that? Solution you should first add
Continue reading