Matej Vehar
Matej Vehar
We have fixed it by adding '**headers**' prop into server/main.js ``` stats : project.compiler_stats, headers: { 'Access-Control-Allow-Origin': '*' } })) app.use(require('webpack-hot-middleware')(compiler, { path: '/__webpack_hmr' ```
I'm using react-native run-ios, which reloads the code. Could be that babel modules are not reloaded until some code ts/js code changes.
Maybe a temp solution for updating package.json scripts: > "cc": "rimraf node_modules/.cache/babel-loader/*,", > "android": "npm run cc && react-native run-android", > "ios": "npm run cc && react-native run-ios",
Another approach with embedding the reset unto run-* commands Android: `extraPackagerArgs: ["--reset-cache", ...], ` inside app/build.gradle IOS: Edit scheme->Run-> add EXTRA_PACKAGER_ARGS='--reset-cache' under ENV variables.
Will this be implemented/updated for the latest rclone?
Found this issue, solution with disabling Perf. in debug worked. https://github.com/Vydia/react-native-background-upload/issues/122
Probably the same issue as #237 ?
Not sure, but Im now using latest RN version (0.64) and probably newer verison of Kotlin. Try removing node-modules and reinstall. Also check in android studio if any of the...
Had this error Execution failed for task ':app:multiDexListDebug'. > A failure occurred while executing com.android.build.gradle.internal.tasks.Workers$ActionFacade > Error while merging dex archives: Type com.reactnativecommunity.clipboard.BuildConfig is defined multiple times: Problem was that...
Wont have time to tackle this one at the moment and also Cocoapods 1.10.0 was released :)