Skip to content

Commit b668ab0

Browse files
fix: Align podspec reqs with expo 52 (#199)
* feat: Upgrade for Expo v52 compatibility * docs(changeset): align podspec platform requirements with expo version * fix: align platform with expo 52 requirement (15.1)
1 parent a56a585 commit b668ab0

File tree

74 files changed

+2209
-1325
lines changed

Some content is hidden

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

74 files changed

+2209
-1325
lines changed

.changeset/afraid-knives-pull.md

+8

.changeset/fifty-walls-fry.md

+12
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

README.md

+1

apps/ExampleApp/app.config.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import { ExpoConfig, ConfigContext } from "@expo/config"
55
* Use ts-node here so we can use TypeScript for our Config Plugins
66
* and not have to compile them to JavaScript
77
*/
8-
const { withSplashScreen } = require("./plugins/withSplashScreen")
98
const { withFlipperDisabled } = require("./plugins/withFlipperDisabled")
109
/**
1110
* @param config ExpoConfig coming from the static config app.json if it exists
@@ -17,6 +16,6 @@ module.exports = ({ config }: ConfigContext): Partial<ExpoConfig> => {
1716
const existingPlugins = config.plugins ?? []
1817
return {
1918
...config,
20-
plugins: [...existingPlugins, withSplashScreen, withFlipperDisabled],
19+
plugins: [...existingPlugins, withFlipperDisabled],
2120
}
2221
}

apps/ExampleApp/app.json

+15-26
Original file line numberDiff line numberDiff line change
@@ -14,52 +14,33 @@
1414
"version": "1.0.0",
1515
"orientation": "portrait",
1616
"icon": "./assets/images/app-icon-all.png",
17-
"splash": {
18-
"image": "./assets/images/splash-logo-all.png",
19-
"resizeMode": "contain",
20-
"backgroundColor": "#F4F2F1"
21-
},
2217
"updates": {
2318
"fallbackToCacheTimeout": 0
2419
},
2520
"jsEngine": "hermes",
26-
"assetBundlePatterns": ["**/*"],
21+
"assetBundlePatterns": [
22+
"**/*"
23+
],
2724
"android": {
2825
"icon": "./assets/images/app-icon-android-legacy.png",
2926
"package": "red.infinite.reactnativemlkit.example",
3027
"adaptiveIcon": {
3128
"foregroundImage": "./assets/images/app-icon-android-adaptive-foreground.png",
3229
"backgroundImage": "./assets/images/app-icon-android-adaptive-background.png",
3330
"backgroundColor": "#F4F2F1"
34-
},
35-
"splash": {
36-
"image": "./assets/images/splash-logo-android-universal.png",
37-
"resizeMode": "contain",
38-
"backgroundColor": "#F4F2F1"
3931
}
4032
},
4133
"ios": {
4234
"icon": "./assets/images/app-icon-ios.png",
4335
"supportsTablet": true,
4436
"bundleIdentifier": "red.infinite.reactnativemlkit.example",
45-
"splash": {
46-
"image": "./assets/images/splash-logo-ios-mobile.png",
47-
"tabletImage": "./assets/images/splash-logo-ios-tablet.png",
48-
"resizeMode": "contain",
49-
"backgroundColor": "#F4F2F1"
50-
},
5137
"infoPlist": {
52-
"NSCameraUsageDescription": "This app uses the camera to help with facial detection.",
38+
"NSCameraUsageDescription": "This app uses the camera to take pictures to demo the machine learning algorithms. (Face detection, Object detection and Image Labelling).",
5339
"NSPhotoLibraryUsageDescription": "This app uses the photo library to select images for Machine Learning purposes. i.e. Object and Image detection."
5440
}
5541
},
5642
"web": {
5743
"favicon": "./assets/images/app-icon-web-favicon.png",
58-
"splash": {
59-
"image": "./assets/images/splash-logo-web.png",
60-
"resizeMode": "contain",
61-
"backgroundColor": "#F4F2F1"
62-
},
6344
"bundler": "metro"
6445
},
6546
"plugins": [
@@ -70,15 +51,23 @@
7051
"ios": {
7152
"newArchEnabled": false,
7253
"flipper": false,
73-
"deploymentTarget": "15.8.3"
54+
"deploymentTarget": "15.1"
7455
},
7556
"android": {
7657
"newArchEnabled": false,
77-
"compileSdkVersion": 34
58+
"compileSdkVersion": 35
7859
}
7960
}
8061
],
81-
"expo-font"
62+
"expo-font",
63+
[
64+
"expo-splash-screen",
65+
{
66+
"image": "./assets/images/splash-logo-android-universal.png",
67+
"backgroundColor": "#F4F2F1",
68+
"imageWidth": 250
69+
}
70+
]
8271
],
8372
"experiments": {
8473
"tsconfigPaths": true

apps/ExampleApp/package.json

+55-27
Original file line numberDiff line numberDiff line change
@@ -31,42 +31,42 @@
3131
},
3232
"dependencies": {
3333
"@expo-google-fonts/space-grotesk": "^0.2.2",
34-
"@expo/metro-runtime": "~3.2.1",
34+
"@expo/metro-runtime": "~4.0.1",
3535
"@infinitered/react-native-mlkit-document-scanner": "workspace:^2.0.1",
3636
"@infinitered/react-native-mlkit-face-detection": "workspace:^2.0.1",
3737
"@infinitered/react-native-mlkit-image-labeling": "workspace:^2.0.1",
3838
"@infinitered/react-native-mlkit-object-detection": "workspace:^2.0.1",
39-
"@react-native-async-storage/async-storage": "1.23.1",
40-
"@react-navigation/native": "^6.0.2",
39+
"@react-native-async-storage/async-storage": "^2.0.0",
40+
"@react-navigation/native": "^6.0.8",
4141
"@react-navigation/native-stack": "^6.0.2",
42-
"@shopify/flash-list": "1.6.4",
42+
"@shopify/flash-list": "1.7.1",
4343
"apisauce": "3.0.1",
4444
"date-fns": "^2.30.0",
45-
"expo": "^51.0.0",
46-
"expo-build-properties": "~0.12.3",
47-
"expo-dev-client": "~4.0.15",
48-
"expo-font": "~12.0.7",
49-
"expo-image": "~1.12.11",
50-
"expo-image-picker": "~15.0.5",
51-
"expo-linking": "~6.3.1",
52-
"expo-localization": "~15.0.3",
53-
"expo-splash-screen": "~0.27.5",
54-
"expo-status-bar": "~1.12.1",
45+
"expo": "^52.0.28",
46+
"expo-build-properties": "~0.13.2",
47+
"expo-dev-client": "~5.0.11",
48+
"expo-font": "~13.0.3",
49+
"expo-image": "~2.0.4",
50+
"expo-image-picker": "~16.0.5",
51+
"expo-linking": "~7.0.5",
52+
"expo-localization": "~16.0.1",
53+
"expo-splash-screen": "~0.29.21",
54+
"expo-status-bar": "~2.0.1",
5555
"i18n-js": "3.9.2",
5656
"mobx": "6.10.2",
5757
"mobx-react-lite": "4.0.5",
5858
"mobx-state-tree": "5.3.0",
59-
"react": "18.2.0",
60-
"react-dom": "18.2.0",
61-
"react-native": "0.74.2",
62-
"react-native-gesture-handler": "~2.16.1",
63-
"react-native-reanimated": "~3.10.1",
64-
"react-native-safe-area-context": "4.10.1",
65-
"react-native-screens": "3.31.1",
66-
"react-native-web": "~0.19.10"
59+
"react": "18.3.1",
60+
"react-dom": "^18.3.1",
61+
"react-native": "^0.76.0",
62+
"react-native-gesture-handler": "^2.20.0",
63+
"react-native-reanimated": "^3.16.1",
64+
"react-native-safe-area-context": "^4.12.0",
65+
"react-native-screens": "^3.34.0",
66+
"react-native-web": "~0.19.13"
6767
},
6868
"devDependencies": {
69-
"@babel/core": "^7.24.0",
69+
"@babel/core": "^7.25.2",
7070
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
7171
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
7272
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
@@ -76,9 +76,14 @@
7676
"@babel/preset-env": "^7.20.0",
7777
"@babel/runtime": "^7.20.0",
7878
"@infinitered/tsconfig": "0.3.0",
79+
"@react-native-community/cli": "^15.0.0",
80+
"@react-native-community/cli-platform-android": "^15.0.0",
81+
"@react-native-community/cli-platform-ios": "^15.0.0",
82+
"@react-native/metro-config": "^0.76.0",
83+
"@rnx-kit/align-deps": "^3.0.3",
7984
"@types/i18n-js": "3.8.2",
8085
"@types/jest": "^29.2.1",
81-
"@types/react": "~18.2.79",
86+
"@types/react": "~18.3.12",
8287
"@types/react-test-renderer": "^18.0.0",
8388
"@typescript-eslint/eslint-plugin": "^5.59.0",
8489
"@typescript-eslint/parser": "^5.59.0",
@@ -94,18 +99,18 @@
9499
"eslint-plugin-reactotron": "^0.1.2",
95100
"expo-atlas": "^0.3.0",
96101
"jest": "^29.2.1",
97-
"jest-expo": "~51.0.1",
102+
"jest-expo": "~52.0.3",
98103
"patch-package": "6.4.7",
99104
"postinstall-prepare": "1.0.1",
100105
"prettier": "2.8.8",
101-
"react-test-renderer": "18.2.0",
106+
"react-test-renderer": "18.3.1",
102107
"reactotron-core-client": "^2.8.13",
103108
"reactotron-mst": "^3.1.7",
104109
"reactotron-react-js": "^3.3.11",
105110
"reactotron-react-native": "^5.0.5",
106111
"ts-jest": "^29.1.1",
107112
"ts-node": "^10.9.2",
108-
"typescript": "~5.3.3"
113+
"typescript": "~5.1.6"
109114
},
110115
"engines": {
111116
"node": ">=18"
@@ -188,5 +193,28 @@
188193
"space-before-function-paren": 0,
189194
"reactotron/no-tron-in-production": "error"
190195
}
196+
},
197+
"rnx-kit": {
198+
"kitType": "app",
199+
"alignDeps": {
200+
"requirements": [
201+
202+
],
203+
"capabilities": [
204+
"animation",
205+
"core",
206+
"core-android",
207+
"core-ios",
208+
"gestures",
209+
"jest",
210+
"navigation/native",
211+
"react",
212+
"react-dom",
213+
"react-test-renderer",
214+
"safe-area",
215+
"screens",
216+
"storage"
217+
]
218+
}
191219
}
192220
}
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// babel.config.js
22
module.exports = {
3-
presets: ["module:metro-react-native-babel-preset"],
3+
presets: ["module:@react-native/babel-preset"],
44
plugins: [["@babel/plugin-transform-private-methods", { loose: true }]],
55
};

modules/react-native-mlkit-core/ios/RNMLKitCore.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Pod::Spec.new do |s|
1010
s.license = package['license']
1111
s.author = package['author']
1212
s.homepage = package['homepage']
13-
s.platform = :ios, '15.8.3'
13+
s.platform = :ios, '15.1'
1414
s.swift_version = '5.4'
1515
s.source = { git: 'http://github.com/infinitered/react-native-mlkit' }
1616
s.static_framework = true

modules/react-native-mlkit-core/jest-setup.js

-1
This file was deleted.

modules/react-native-mlkit-core/jest.config.js

-1
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,4 @@ module.exports = {
1414
],
1515
},
1616
moduleFileExtensions: ["ts", "tsx", "js", "jsx", "json", "node"],
17-
setupFilesAfterEnv: ["./jest-setup.js"],
1817
};

modules/react-native-mlkit-core/package.json

+26-5
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,15 @@
2929
"devDependencies": {
3030
"@babel/plugin-transform-private-methods": "^7.24.7",
3131
"@infinitered/tsconfig": "0.3.0",
32-
"@testing-library/react-native": "^12.3.0",
33-
"expo-image": "^1.10.6",
32+
"@rnx-kit/align-deps": "^3.0.3",
33+
"@testing-library/react-native": "^13.0.1",
34+
"expo-image": "^2.0.4",
3435
"expo-module-scripts": "^3.4.1",
35-
"expo-modules-core": "^1.12.14",
36+
"expo-modules-core": "^2.2.0",
3637
"jest": "^29.7.0",
37-
"jest-expo": "^48.0.0",
38+
"jest-expo": "^52.0.3",
3839
"ts-jest": "^29.1.1",
39-
"typescript": "^5.3.0"
40+
"typescript": "~5.1.6"
4041
},
4142
"peerDependencies": {
4243
"expo": "*",
@@ -48,5 +49,25 @@
4849
"@testing-library/jest-native": "^5.4.3",
4950
"@testing-library/react-hooks": "^8.0.1",
5051
"@types/jest": "^29.5.5"
52+
},
53+
"rnx-kit": {
54+
"kitType": "library",
55+
"alignDeps": {
56+
"requirements": {
57+
"development": [
58+
59+
],
60+
"production": [
61+
"react-native@*"
62+
]
63+
},
64+
"capabilities": [
65+
"core",
66+
"core-android",
67+
"core-ios",
68+
"jest",
69+
"react"
70+
]
71+
}
5172
}
5273
}

modules/react-native-mlkit-document-scanner/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
"@infinitered/react-native-mlkit-core": "2.1.0"
3131
},
3232
"devDependencies": {
33-
"@types/react": "~18.2.45",
33+
"@types/react": "~18.3.12",
3434
"expo-module-scripts": "^3.4.1",
35-
"expo-modules-core": "^1.12.14"
35+
"expo-modules-core": "~2.2.0"
3636
},
3737
"peerDependencies": {
3838
"expo": "*",

modules/react-native-mlkit-face-detection/ios/RNMLKitFaceDetection.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Pod::Spec.new do |s|
1010
s.license = package['license']
1111
s.author = package['author']
1212
s.homepage = package['homepage']
13-
s.platform = :ios, '15.8.3'
13+
s.platform = :ios, '15.1'
1414
s.swift_version = '5.4'
1515
s.source = { git: 'http://github.com/infinitered/react-native-mlkit' }
1616
s.static_framework = true

modules/react-native-mlkit-face-detection/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
"@infinitered/react-native-mlkit-core": "2.1.0"
3131
},
3232
"devDependencies": {
33-
"@types/react": "~18.2.45",
33+
"@types/react": "~18.3.12",
3434
"expo-module-scripts": "^3.4.1",
35-
"expo-modules-core": "^1.12.14"
35+
"expo-modules-core": "~2.2.0"
3636
},
3737
"peerDependencies": {
3838
"expo": "*",

modules/react-native-mlkit-face-detection/src/module/RNMLKitFaceDetector.ts

+2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,12 @@ import {
44
RNMLKitFaceDetectionResult,
55
} from "../types";
66

7+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
78
async function initialize(options?: RNMLKitFaceDetectorOptions) {
89
return await RNMLKitFaceDetectionModule.initialize(options);
910
}
1011

12+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
1113
async function detectFaces(imageUri: string) {
1214
return await RNMLKitFaceDetectionModule.detectFaces(imageUri);
1315
}

modules/react-native-mlkit-image-labeling/ios/RNMLKitImageLabeler.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Pod::Spec.new do |s|
1010
s.license = package['license']
1111
s.author = package['author']
1212
s.homepage = package['homepage']
13-
s.platform = :ios, '15.8.3'
13+
s.platform = :ios, '15.1'
1414
s.swift_version = '5.4'
1515
s.source = { git: 'https://github.com/infinitered/react-native-mlkit' }
1616
s.static_framework = true

0 commit comments

Comments
 (0)