Skip to content
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

upgrade to react native 0.72.7 #2796

Merged
merged 24 commits into from
Feb 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
19d6b72
upgrade to react native 0.72.7 and other libs
gamingumar Dec 5, 2023
0abedff
project files update
noumantahir Dec 12, 2023
e4c0704
patched for viewPRopsTypes
noumantahir Dec 13, 2023
b6a3bc0
multi slider patch update
noumantahir Dec 13, 2023
a60b6f3
Merge branch 'development' into feat/GU/rn-0.72
noumantahir Dec 13, 2023
6ca8f9f
project files update
noumantahir Dec 14, 2023
2db431a
Merge remote-tracking branch 'origin/development' into feat/GU/rn-0.72
noumantahir Feb 20, 2024
3305989
upgrade to 73.4
noumantahir Feb 20, 2024
3323b2f
lottie update
noumantahir Feb 20, 2024
cef1507
nodify fix
noumantahir Feb 20, 2024
fafef81
animated component updates
noumantahir Feb 20, 2024
215313c
lottie fixes
noumantahir Feb 20, 2024
702bcf1
reset test code
noumantahir Feb 20, 2024
50efd81
handled lottie aspect ratios
noumantahir Feb 21, 2024
72038f4
reanimated migration of editorToolbar and uploadsGalleryModal
noumantahir Feb 21, 2024
45de71f
migrated lastItem usage in arrays
noumantahir Feb 21, 2024
f8ae3bd
make sure welcome screen is rendered properly
noumantahir Feb 21, 2024
faf449f
remove ios icon prefix
noumantahir Feb 22, 2024
9f128f7
android build fixes
noumantahir Feb 22, 2024
3bc0d39
added camera vision package
noumantahir Feb 26, 2024
f4980ae
reanabled qr scanning with vision camera
noumantahir Feb 26, 2024
09585c0
image picker update
noumantahir Feb 26, 2024
04963c9
version match
noumantahir Feb 28, 2024
bf95493
upgraded camera roll, put back image save feature
noumantahir Feb 28, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions .buckconfig

This file was deleted.

2 changes: 1 addition & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"plugin:import/errors",
"plugin:import/warnings",
"plugin:jest/recommended",
"@react-native-community",
"@react-native",
"plugin:import/typescript"
],
"env": {
Expand Down
66 changes: 0 additions & 66 deletions .flowconfig

This file was deleted.

12 changes: 7 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,18 +31,15 @@ local.properties
*.iml
*.hprof
.cxx/
*.keystore
!debug.keystore

# node.js
#
node_modules/
npm-debug.log
yarn-error.log

# BUCK
buck-out/
\.buckd/
*.keystore
!debug.keystore

# fastlane
#
Expand All @@ -63,6 +60,11 @@ buck-out/
/ios/Pods/
/vendor/bundle/

# Temporary files created by Metro to check the health of the file watcher
.metro-health-check*
# testing
/coverage

config.js
!src/screens/steem-connect/config.js
google-services.json
Expand Down
1 change: 0 additions & 1 deletion .node-version

This file was deleted.

1 change: 0 additions & 1 deletion .ruby-version

This file was deleted.

8 changes: 5 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
source 'https://rubygems.org'

# You may use http://rbenv.org/ or https://rvm.io/ to install and use this version
ruby '2.7.5'
ruby '3.0.0'

gem 'cocoapods', '~> 1.11', '>= 1.11.2'
# Cocoapods 1.15 introduced a bug which break the build. We will remove the upper
# bound in the template on Cocoapods with next React Native release.
gem 'cocoapods', '>= 1.13', '< 1.15'
gem 'activesupport', '>= 6.1.7.5', '< 7.1.0'
3 changes: 3 additions & 0 deletions __tests__/App-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ import 'react-native';
import React from 'react';
import App from '../App';

// Note: import explicitly to use the types shiped with jest.
import {it} from '@jest/globals';

// Note: test renderer must be required after react-native.
import renderer from 'react-test-renderer';

Expand Down
Loading