forked from joltup/rn-fetch-blob
-
Notifications
You must be signed in to change notification settings - Fork 152
Add Support for Windows New Arch #414
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
RonRadtke
merged 30 commits into
RonRadtke:master
from
anupriya13:user/anuverma/windows
May 25, 2025
Merged
Changes from all commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
c70acb7
upgrade version
anupriya13 2be3d9b
windows init new arch
anupriya13 dc02843
try adding apis
anupriya13 b7cf6e3
Update ReactNativeBlobUtil.h
anupriya13 b33c001
fix build errors
anupriya13 6156dda
add createfile implementation
anupriya13 f9af06d
Add some more API implementations
anupriya13 11f0627
Add more APIs implementations
anupriya13 440f81b
Add more API implementation
anupriya13 3869c2c
Try adding examples changes
anupriya13 44b85fa
fix metor config and remove picker usage
Yajur-Grover 13ecbe0
Update App.js
anupriya13 60308b9
fix babel
anupriya13 7fe8261
remove statusbar and SafeAreaView
anupriya13 3b7f53b
add release
anupriya13 ba9052d
Merge branch 'master' into user/anuverma/windows
anupriya13 4258d69
fix babel
Yajur-Grover 43941d7
Merge branch 'user/anuverma/windows' of https://github.com/anupriya13…
Yajur-Grover cba5661
update createFile
anupriya13 049a372
Resolve Comments
anupriya13 51f7b24
ignore packages
anupriya13 0b63daf
Update .gitignore
anupriya13 ab4c74b
Stop tracking windows/packages directory
anupriya13 6e8608a
Stop tracking windows/packages directory
anupriya13 e63971e
Stop tracking msbuild.binlog
anupriya13 47220d0
Update .gitignore
anupriya13 91fe7ea
Upgrade versions
anupriya13 0a12326
Update package.json
anupriya13 0f8571b
use co_await instead of get()
anupriya13 6a3b2a9
use co_await instead of completed
anupriya13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<configuration> | ||
<packageSources> | ||
<clear /> | ||
<add key="react-native" value="https://pkgs.dev.azure.com/ms/react-native/_packaging/react-native-public/nuget/v3/index.json" /> | ||
<add key="Nuget.org" value="https://api.nuget.org/v3/index.json" /> | ||
</packageSources> | ||
<disabledPackageSources> | ||
<clear /> | ||
</disabledPackageSources> | ||
</configuration> |
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,10 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<configuration> | ||
<packageSources> | ||
<clear /> | ||
<add key="Nuget.org" value="https://api.nuget.org/v3/index.json" /> | ||
</packageSources> | ||
<disabledPackageSources> | ||
<clear /> | ||
</disabledPackageSources> | ||
</configuration> |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
module.exports = { | ||
presets: ['module:metro-react-native-babel-preset'], | ||
presets: ['module:@react-native/babel-preset'], | ||
}; |
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,3 @@ | ||
const config = {}; | ||
|
||
module.exports = require('@rnx-kit/jest-preset')('windows', config); |
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there any reasons for the duplicates?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll merge it and clean it up :)