Pal Kerecsenyi

Results 8 comments of Pal Kerecsenyi

If anyone happens to have this (or a similar) issue, and you don't need Flipper support for your app, disabling Flipper solves the issue. Comment out these lines from `Podfile`:...

**Update** I solved this issue by doing this before each build: ``` npx react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle ``` and then run ``` cd android...

Thanks for the reply @lucasbento! I tried commenting that line out, and once again the build finished perfectly. However, when launching the app I got a different fatal error: ```...

**Update** Commenting out these lines fixed it, and my app runs successfully (with Hermes enabled): ``` if (useIntlJsc) { implementation 'org.webkit:android-jsc-intl:+' } else { implementation 'org.webkit:android-jsc:+' } ```

@Ayyanchira I'm not completely sure, but I think it might have something to do with the fact that you've set `--dev false` in the bundle command. Try using this instead:...

The `syncWithAlgolia()` function is meant to be called at the Model level, not the ModelSchema level. Try calling ```js const Tag = mongoose.model("Tag", TagSchema) ``` and then ```js Tag.syncWithAlgolia(); ```

Tests are currently failing due to a dependency issue which we need to fix. We are importing and referencing `RDMVCSRelease` [in the config](https://github.com/inveniosoftware/invenio-app-rdm/pull/3162/files#diff-988eb51a0bc0a8bf6efd0b04d1bb6b6d8f24cc80504ea36699a202904a20af4dR1481-R1485). Currently this is failing as the `invenio-vcs`...