Skip to content

Commit 006142c

Browse files
authored
chore!: bump to SDK 49 (#180)
* bump * Update yarn.lock * drop default babel and metro configs * reduce gitignores * drop unused config files * drop unused and web * drop unused gitignores * update and drop lodash * yarn * bump tested by * bump all * update * Update app.json * Update README.md * bump kotlin * update tests
1 parent 79d4649 commit 006142c

File tree

106 files changed

+1210
-2070
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

106 files changed

+1210
-2070
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,5 @@ packages/@*/*/build/**
6262

6363
apps/*/ios/*
6464
apps/*/android/*
65-
apps/*/web-build/*
65+
apps/*/web-build/*
66+
apps/*/dist/*

apps/app/.expo-shared/assets.json

-4
This file was deleted.

apps/app/.gitignore

+1-79
Original file line numberDiff line numberDiff line change
@@ -1,80 +1,2 @@
1-
node_modules/**/*
2-
.expo/*
3-
npm-debug.*
4-
*.jks
5-
*.p8
6-
*.p12
7-
*.key
8-
*.mobileprovision
9-
*.orig.*
10-
web-build/
11-
12-
# macOS
13-
.DS_Store
14-
15-
16-
/artifacts
17-
181
/scripts/start.command
19-
/ios
20-
/android
21-
# @generated expo-cli sync-e7dcf75f4e856f7b6f3239b3f3a7dd614ee755a8
22-
# The following patterns were generated by expo-cli
23-
24-
# OSX
25-
#
26-
.DS_Store
27-
28-
# Xcode
29-
#
30-
build/
31-
*.pbxuser
32-
!default.pbxuser
33-
*.mode1v3
34-
!default.mode1v3
35-
*.mode2v3
36-
!default.mode2v3
37-
*.perspectivev3
38-
!default.perspectivev3
39-
xcuserdata
40-
*.xccheckout
41-
*.moved-aside
42-
DerivedData
43-
*.hmap
44-
*.ipa
45-
*.xcuserstate
46-
project.xcworkspace
47-
48-
# Android/IntelliJ
49-
#
50-
build/
51-
.idea
52-
.gradle
53-
local.properties
54-
*.iml
55-
*.hprof
56-
57-
# node.js
58-
#
59-
node_modules/
60-
npm-debug.log
61-
yarn-error.log
62-
63-
# BUCK
64-
buck-out/
65-
\.buckd/
66-
*.keystore
67-
!debug.keystore
68-
69-
# Bundle artifacts
70-
*.jsbundle
71-
72-
# CocoaPods
73-
/ios/Pods/
74-
75-
# Expo
76-
.expo/
77-
web-build/
78-
dist/
79-
80-
# @end expo-cli
2+
/artifacts

apps/app/CHANGELOG.md

-66
This file was deleted.

apps/app/app.json

+2-3
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,8 @@
3232
"@config-plugins/detox",
3333
"@config-plugins/react-native-adjust",
3434
"@config-plugins/react-native-callkeep",
35-
"@config-plugins/react-native-blob-util",
36-
"@config-plugins/react-native-pdf",
37-
"@config-plugins/android-jsc-intl"
35+
"@config-plugins/android-jsc-intl",
36+
"expo-localization"
3837
]
3938
}
4039
}

apps/app/detox.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const iosName = "app";
1+
const iosName = "detox";
22
const emulator = "Pixel_6_Pro_API_33";
33
const simulator = "iPhone 14 Pro";
44
const derivedDataPath = "ios/build";

apps/app/package.json

+10-13
Original file line numberDiff line numberDiff line change
@@ -25,34 +25,31 @@
2525
"@config-plugins/detox": "*",
2626
"@config-plugins/react-native-adjust": "*",
2727
"@config-plugins/react-native-callkeep": "*",
28-
"detox": "^20.5.0",
29-
"expo": "~48.0.6",
30-
"expo-localization": "~14.1.1",
31-
"expo-splash-screen": "~0.18.1",
32-
"expo-status-bar": "~1.4.4",
33-
"expo-updates": "~0.16.3",
28+
"detox": "^20.11.0",
29+
"expo": "^49.0.3",
30+
"expo-localization": "~14.3.0",
31+
"expo-splash-screen": "~0.20.4",
32+
"expo-status-bar": "~1.6.0",
3433
"fbjs": "^0.8.18",
3534
"i18n-js": "^3.8.0",
3635
"luxon": "^1.27.0",
3736
"react": "18.2.0",
38-
"react-dom": "18.2.0",
39-
"react-native": "0.71.3",
37+
"react-native": "0.72.3",
4038
"react-native-adjust": "^4.33.0",
41-
"react-native-callkeep": "^4.3.7",
42-
"react-native-safe-area-context": "4.5.0",
43-
"react-native-web": "~0.18.9"
39+
"react-native-callkeep": "^4.3.9",
40+
"react-native-safe-area-context": "4.6.3"
4441
},
4542
"devDependencies": {
4643
"@babel/core": "^7.20.0",
4744
"@babel/plugin-syntax-jsx": "^7.16.0",
4845
"@types/jest": "^29.4.0",
4946
"@types/luxon": "^1.27.1",
50-
"@types/react": "~18.0.27",
47+
"@types/react": "~18.2.14",
5148
"babel-jest": "^29.5.0",
5249
"jest": "^29.2.1",
5350
"jest-circus": "^29.5.0",
5451
"ts-jest": "^29.0.5",
55-
"typescript": "^4.9.4"
52+
"typescript": "^5.1.3"
5653
},
5754
"private": true
5855
}

apps/app/scripts/start-metro.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ else
1616
commandFile=$(dirname "$0")/start.command
1717
cat > ${commandFile} << EOF
1818
cd "\$(dirname "\$0")/.."
19-
# Run 'react-native start --help' to get more parameters
19+
# Run 'npx expo start --help' to get more parameters
2020
yarn start --port ${port}
2121
EOF
2222
# execute the file in a new command line window

apps/ffmpeg-kit-react-native/.gitignore

-80
This file was deleted.

apps/ffmpeg-kit-react-native/CHANGELOG.md

Whitespace-only changes.

apps/ffmpeg-kit-react-native/babel.config.js

-6
This file was deleted.

apps/ffmpeg-kit-react-native/metro.config.js

-6
This file was deleted.

apps/ffmpeg-kit-react-native/package.json

+4-6
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,12 @@
99
},
1010
"dependencies": {
1111
"@config-plugins/ffmpeg-kit-react-native": "*",
12-
"expo": "~48.0.5",
13-
"expo-splash-screen": "~0.18.1",
14-
"expo-status-bar": "~1.4.4",
12+
"expo": "^49.0.3",
13+
"expo-splash-screen": "~0.20.4",
14+
"expo-status-bar": "~1.6.0",
1515
"ffmpeg-kit-react-native": "^5.1.0",
1616
"react": "18.2.0",
17-
"react-dom": "18.2.0",
18-
"react-native": "0.71.3",
19-
"react-native-web": "~0.18.9"
17+
"react-native": "0.72.3"
2018
},
2119
"devDependencies": {
2220
"@babel/core": "^7.20.0"

0 commit comments

Comments
 (0)