Dustin Bahr
Dustin Bahr
I am also having this issue in version `6.1.41`. `onDeepLink` is only called if the app is already open. I have tried everything above including the "hack" from @csantarin, and...
I found a workaround for my specific use case. I decided to embed the image data in my exported animation json. Then at runtime, I download the image I want...
```js import RNFS from "react-native-fs"; const imageURL = "https://some.image.url/here.jpg"; const filename = "filename.jpg"; const destinationDirectoryPath = RNFS.CachesDirectoryPath; const destinationPath = `${destinationDirectoryPath}/${filename}`; const options: DownloadFileOptions = { fromUrl: imageURL, toFile: destinationPath,...
@ahunter135 What version of `react-native` and `react-native-iap` are you using? I am curious to know if other versions of either are also experiencing this problem.
Thanks again for the great writeup! I'll give this a shot too.