Esben von Buchwald
Esben von Buchwald
I agree with @apietrzak - of course we can store the data with a custom-made key for each document, but that will not only make the app a bit code...
@jayair which frontend changes are you thinking of? I tested my local react client with the auto-deployed backend as soon as i got through the cloudformation steps, and I got...
> If this is the actual reason, changing the `accessible` to AFTER_FIRST_UNLOCK or ALLWAYS could do the trick To me it seems like this change will sometimes solve the problem...
To anyone coming here: The tutorial on freecodecamp is based on obsolete Slack APIs and a module that's not supporting the recent versions. I just wasted time on this module...
To anyone coming here: The tutorial on freecodecamp is based on obsolete Slack APIs and a module that's not supporting the recent versions. I just wasted time on this module...
Downgrading to **1.0.0-beta.6** solved it for me
I didn't have any luck with the `crossOrigin` setting, so I ended up using `RNFS.downloadFile` and then `RNFS.readFile` and made a base64 PNG data URL of the data.
I went with this solution instead: ```js import { request } from 'urllib' app.use('/proxy/:url', async (req, res) => { const { url } = req.params if (!url || typeof url...
What worked for me, with RN 0.65.1 was to not change any of the Android project files and just install the module using` yarn` and build again. The only manual...
In `android/app/build.gradle` add this: ``` configurations.all { resolutionStrategy { force 'androidx.browser:browser:1.5.0' } } ```