{"id":13695278,"url":"https://github.com/starters-dev/rnn-with-expo","last_synced_at":"2025-06-10T22:34:37.157Z","repository":{"id":58088718,"uuid":"471022262","full_name":"starters-dev/rnn-with-expo","owner":"starters-dev","description":"🛹 Minimalistic React Native App Starter with React Native Navigation, Expo Modules and RNN Screens.","archived":false,"fork":false,"pushed_at":"2022-09-13T19:48:39.000Z","size":992,"stargazers_count":25,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-08T05:48:41.992Z","etag":null,"topics":["expo","expo-modules","react-native","react-native-navigation","react-native-navigation-with-expo","rnn-screens"],"latest_commit_sha":null,"homepage":"https://starters.dev","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/starters-dev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-03-17T14:24:48.000Z","updated_at":"2025-01-08T16:41:26.000Z","dependencies_parsed_at":"2023-01-18T06:31:08.679Z","dependency_job_id":null,"html_url":"https://github.com/starters-dev/rnn-with-expo","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/starters-dev%2Frnn-with-expo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/starters-dev%2Frnn-with-expo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/starters-dev%2Frnn-with-expo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/starters-dev%2Frnn-with-expo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/starters-dev","download_url":"https://codeload.github.com/starters-dev/rnn-with-expo/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/starters-dev%2Frnn-with-expo/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259164529,"owners_count":22815372,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["expo","expo-modules","react-native","react-native-navigation","react-native-navigation-with-expo","rnn-screens"],"created_at":"2024-08-02T18:00:20.571Z","updated_at":"2025-06-10T22:34:37.136Z","avatar_url":"https://github.com/starters-dev.png","language":"Java","funding_links":[],"categories":["Uncategorized"],"sub_categories":["Uncategorized"],"readme":"# [RNN](https://github.com/wix/react-native-navigation) with [Expo](https://github.com/expo/expo)\n\nThis is a minimalistic starter with [React Native Navigation](https://github.com/wix/react-native-navigation) (`v7.29.0`) and [Expo Modules](https://github.com/expo/expo) (`v46.0.10`) set up and running together without any issues.\n\n[React Native](https://github.com/facebook/react-native) version is `0.70.0`.\n\n## Quickstart\n\n1. Clone the repo\n\n```bash\nnpx degit starters-dev/rnn-with-expo app\n```\n\n2. Install packages and pods\n\n```bash\ncd app \u0026\u0026 yarn \u0026\u0026 yarn ios:pods\n```\n\n3. Run it\n\nOpen XCode or Android Studio to run the project (recommended) or do\n\n```bash\nyarn ios\nyarn android\n```\n\n### Rename\n\nIf you need to rename the app, do the following (based on [react-native-rename](https://github.com/junedomingo/react-native-rename)):\n\n```bash\nyarn rename \"NewApp\" -b com.yourcompany.newapp\nyarn ios:pods\n```\n\n⚠️ Troubleshooting on Android. You can see that after running `rename` script, it doesn't change package name and imports for files under `newarchitecture` folder.\n\n\u003cdetails\u003e\n\u003csummary\u003eYou will need do these steps manually\u003c/summary\u003e\n\n1. Open all `.java` files under `android/app/src/main/java/your/bundle/newarchitecture/` folder.\n\n2. Open `MainApplication.java`.\n\n3. Find all packages and imports which contain `io.batyr.rnnwithexpo` and change them to yours.\n\n\u003c/details\u003e\n\n## What's inside\n\n- [React Native Navigation](https://github.com/wix/react-native-navigation) - truly native navigation experience for iOS and Android.\n- [Expo Modules](https://github.com/expo/expo) - libraries and modules from [Expo](https://expo.dev) ecosystem.\n- [RNN Screens](https://github.com/kanzitelli/rnn-screens) - simplifed and predictable Navigation for React Native. Built on top of [React Native Navigation](https://github.com/wix/react-native-navigation).\n\n#### Extra helpful libraries\n\n- [Patch Package](https://github.com/ds300/patch-package) - useful for fixing node modules instantly.\n\n## Known issues\n\n- **[iOS]** _Hermes framework not found/loaded_. There are some cases when `hermes.framework` is not found/loaded in XCode with React Native 0.70. Check [this comment](https://github.com/facebook/react-native/issues/34601#issuecomment-1243232921) for potential solution.\n- **[iOS]** _Large title is not shown on 2nd+ tab_. This [issue](https://github.com/software-mansion/react-native-screens/issues/649) exists. You can find the patch file for fixing that at `patches/react-native+0.70.0.patch`.\n- **[Android]** _Issue after renaming on Android_. This happens when you [rename](#rename) the app using `yarn rename` script. Check [Rename](#rename) section for possible solution.\n\n## Other\n\n- [kanzitelli/rnn-starter](https://github.com/kanzitelli/rnn-starter) - is a more advanced starter that is powered by cli-rn, React Native Navigation, Expo Modules, RNN Screens, RN UI lib, MMKV, Mobx, Reanimated 2, Dark Mode, Localization, Notifications, Permissions, and much more.\n\n\u003e Originally bootstrapped from [react-native-community/react-native-template-typescript](https://github.com/react-native-community/react-native-template-typescript).\n\n## License\n\nThis project is [MIT licensed](/LICENSE.md)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstarters-dev%2Frnn-with-expo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstarters-dev%2Frnn-with-expo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstarters-dev%2Frnn-with-expo/lists"}