-
Notifications
You must be signed in to change notification settings - Fork 69
feat: add bare React Native LLM chat example app #763
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
msluszniak
merged 39 commits into
software-mansion:main
from
rizalibnu:examples/bare-react-native
Mar 16, 2026
Merged
Changes from all commits
Commits
Show all changes
39 commits
Select commit
Hold shift + click to select a range
bb1d160
feat: add resource fetcher adapters for Expo and bare React Native
rizalibnu 248d1b6
feat: add bare React Native LLM chat example app
rizalibnu a973890
feat: enhance resource fetcher with error handling and new methods fo…
rizalibnu 3b93bc7
chore: exclude llm_bare app from workspace
rizalibnu 8f310c1
feat: integrate MMKV for persistent state storage in background downl…
rizalibnu 93f90ec
chore: temporarily remove bare RN LLM example app for code review
rizalibnu ebe6836
chore: remove bare app directories from .gitignore
rizalibnu f447454
chore: update react-native-executorch dependency to allow any version
rizalibnu af54de0
chore: add react-native-executorch as a dependency to adapters
rizalibnu 6cc94d1
chore: update Node version in .nvmrc and adjust typecheck scripts in …
rizalibnu f2fcd03
chore: replace generic error with RnExecutorchError in ResourceFetche…
rizalibnu c6f73ec
chore: move yarn prepare from adapter typecheck scripts to CI workflow
rizalibnu 502b2fc
chore: init bare React Native example app with @react-native-communit…
rizalibnu bbc2980
feat: add bare React Native LLM chat example app
rizalibnu 799049a
fix: resolve merge conflicts, fix package refs, and remove tracked ge…
msluszniak 02ae756
docs: add bare_rn app to Demo Apps section in README
msluszniak c6a6a76
fix: correct corrupted jest@29.7.0 lockfile entry with wrong dependen…
msluszniak 676498e
fix: regenerate lockfile entries for @react-native/metro-config@0.81.5
msluszniak 7fcdde1
fix: reset yarn.lock to main and regenerate cleanly for bare_rn works…
msluszniak a8ca09a
fix: revert bare-resource-fetcher typecheck script to avoid CI race c…
msluszniak ccd7c8e
feat: add ios/ and android/ native project files for bare_rn app
msluszniak 63e5ec3
fix: add kconv gem for Ruby 3.4 compatibility in bare_rn
msluszniak dd44505
fix: pin CFPropertyList >= 3.0.9 to fix Ruby 3.4 kconv removal
msluszniak 80a2111
fix: upgrade to CocoaPods >= 1.16.2 for Ruby 3.4 compatibility
msluszniak c8988a5
fix: add Gemfile.lock and Podfile.lock for bare_rn iOS
msluszniak 83730cc
fix: fix Android Gradle paths for yarn workspace monorepo
msluszniak fe18a04
fix: use RNFS.downloadFile on Android to avoid background downloader …
msluszniak 0b0f83d
Delete packages/react-native-executorch/common/rnexecutorch/tests/int…
msluszniak f0b3a33
chore: remove Readme from bare rn app
NorbertKlockiewicz bb76d97
docs: remove emojis from README headings and table of contents
msluszniak 36f45c3
docs: remove emojis from headings in all translated READMEs
msluszniak c2edbf2
chore: update READMEs
msluszniak 2539961
chore: align readmes
msluszniak 7d1479c
chore: add suggestions from code review
msluszniak 7700b7d
chore: fix android build
msluszniak c7eb2c1
chore: make error code specifically for resource fetcher
msluszniak fab283c
chore: add missing error codes
msluszniak cdb4af8
chore: add yarn prepare command for all packages
msluszniak f2979fc
docs: document new error code in documentation
msluszniak File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| BUNDLE_PATH: "vendor/bundle" | ||
| BUNDLE_FORCE_RUBY_PLATFORM: 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| module.exports = { | ||
| root: true, | ||
| extends: '@react-native', | ||
| parserOptions: { | ||
| requireConfigFile: false, | ||
| }, | ||
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,80 @@ | ||
| # OSX | ||
| # | ||
| .DS_Store | ||
|
|
||
| # Xcode | ||
| # | ||
| build/ | ||
| *.pbxuser | ||
| !default.pbxuser | ||
| *.mode1v3 | ||
| !default.mode1v3 | ||
| *.mode2v3 | ||
| !default.mode2v3 | ||
| *.perspectivev3 | ||
| !default.perspectivev3 | ||
| xcuserdata | ||
| *.xccheckout | ||
| *.moved-aside | ||
| DerivedData | ||
| *.hmap | ||
| *.ipa | ||
| *.xcuserstate | ||
| **/.xcode.env.local | ||
|
|
||
| # Android/IntelliJ | ||
| # | ||
| build/ | ||
| .idea | ||
| .gradle | ||
| local.properties | ||
| *.iml | ||
| *.hprof | ||
| .cxx/ | ||
| *.keystore | ||
| !debug.keystore | ||
| .kotlin/ | ||
|
|
||
| # node.js | ||
| # | ||
| node_modules/ | ||
| npm-debug.log | ||
| yarn-error.log | ||
|
|
||
| # fastlane | ||
| # | ||
| # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the | ||
| # screenshots whenever they are needed. | ||
| # For more information about the recommended setup visit: | ||
| # https://docs.fastlane.tools/best-practices/source-control/ | ||
|
|
||
| **/fastlane/report.xml | ||
| **/fastlane/Preview.html | ||
| **/fastlane/screenshots | ||
| **/fastlane/test_output | ||
|
|
||
| # Bundle artifact | ||
| *.jsbundle | ||
|
|
||
| # Ruby / CocoaPods | ||
| **/Pods/ | ||
| /vendor/bundle/ | ||
|
|
||
| # Temporary files created by Metro to check the health of the file watcher | ||
| .metro-health-check* | ||
|
|
||
| # testing | ||
| /coverage | ||
|
|
||
| # Yarn | ||
| .yarn/* | ||
| !.yarn/patches | ||
| !.yarn/plugins | ||
| !.yarn/releases | ||
| !.yarn/sdks | ||
| !.yarn/versions | ||
|
|
||
| # Custom | ||
| !/ios/ | ||
| !/android/ | ||
| /assets/ai-models/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| module.exports = { | ||
| arrowParens: 'avoid', | ||
| singleQuote: true, | ||
| trailingComma: 'all', | ||
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| {} |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.