Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
14 changes: 7 additions & 7 deletions apps/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@
"dependencies": {
"@config-plugins/react-native-adjust": "*",
"@config-plugins/react-native-callkeep": "*",
"expo": "~54",
"expo-localization": "~17.0.7",
"expo-splash-screen": "~31.0.10",
"expo": "~55",
"expo-localization": "~55.0.9",
"expo-splash-screen": "~55.0.12",
"fbjs": "^0.8.18",
"i18n-js": "^3.8.0",
"luxon": "^1.27.0",
"react": "19.1.0",
"react-native": "0.81.4",
"react-native-adjust": "^5.1.0",
"react": "19.2.0",
"react-native": "0.83.2",
"react-native-adjust": "^5.5.0",
"react-native-callkeep": "^4.3.16",
"react-native-safe-area-context": "~5.6.0"
"react-native-safe-area-context": "~5.6.2"
},
"devDependencies": {
"@babel/plugin-syntax-jsx": "^7.16.0",
Expand Down
49 changes: 49 additions & 0 deletions apps/apple-settings/.maestro/app.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
appId: dev.bacon.applesettings
---
# Kill the Settings app to ensure a clean state
- killApp: "com.apple.Preferences"

# Launch the app
- launchApp

# Verify main UI elements are visible
- assertVisible:
id: "name-input"
- assertVisible:
id: "enabled-switch"
- assertVisible:
id: "slider"

# Clear any existing text and type a new value
- tapOn:
id: "name-input"
- eraseText: 50
- inputText: "Maestro"

# Toggle the switch on (default is off)
- tapOn:
id: "enabled-switch"

# Open iOS Settings for this app
- tapOn: "Launch Settings"

# Navigate to the app's settings page
- scrollUntilVisible:
element: "Apps"
direction: DOWN
- tapOn: "Apps"
- scrollUntilVisible:
element: "apple-settings"
direction: DOWN
- tapOn: "apple-settings"
- scrollUntilVisible:
element: "apple-settings Settings"
direction: DOWN

# Verify updated values in the iOS Settings app
- assertVisible: "Maestro"

# Verify the Enabled toggle is on (checked = true when on)
- assertVisible:
id: "PSToggleSwitchSpecifier.enabled_preference.Enabled"
checked: true
15 changes: 8 additions & 7 deletions apps/apple-settings/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,17 @@
"scripts": {
"start": "expo start --dev-client",
"ios": "expo run:ios",
"android": "expo run:android"
"android": "expo run:android",
"e2e": "maestro test .maestro/"
},
"dependencies": {
"@config-plugins/apple-settings": "*",
"@react-native-community/slider": "5.0.1",
"@react-native-picker/picker": "2.11.1",
"expo": "~54",
"expo-splash-screen": "~31.0.9",
"react": "19.1.0",
"react-native": "0.81.4"
"@react-native-community/slider": "5.1.2",
"@react-native-picker/picker": "2.11.4",
"expo": "~55",
"expo-splash-screen": "~55.0.12",
"react": "19.2.0",
"react-native": "0.83.2"
},
"private": true
}
5 changes: 3 additions & 2 deletions apps/apple-settings/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ const App = () => {
<View style={styles.container}>
{/* <SettingsTitle settingsKey="title_preference" /> */}
<SettingsTextInput
testID="name-input"
style={{
height: 40,
borderColor: "gray",
Expand All @@ -22,8 +23,8 @@ const App = () => {
}}
settingsKey="name_preference"
/>
<SettingsSwitch settingsKey="enabled_preference" />
<SettingsSlider settingsKey="slider_preference" />
<SettingsSwitch testID="enabled-switch" settingsKey="enabled_preference" />
<SettingsSlider testID="slider" settingsKey="slider_preference" />
<View />
{/* Broken https://forums.developer.apple.com/forums/thread/764519 */}
{/*<SettingsRadioGroup settingsKey="radio_preference">*/}
Expand Down
Binary file not shown.
10 changes: 4 additions & 6 deletions apps/ios-stickers/package.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,17 @@
{
"name": "@config-plugins-app/ios-stickers",
"main": "./index.js",
"version": "1.0.0",
"scripts": {
"start": "expo start --dev-client",
"prebuild": "expo prebuild -p ios --template ./expo-template-bare-minimum-50.0.17.tgz",
"ios": "expo run:ios",
"android": "expo run:android"
},
"dependencies": {
"@config-plugins/ios-stickers": "*",
"expo": "~54",
"expo-splash-screen": "~31.0.9",
"react": "19.1.0",
"react-native": "0.81.4"
"expo": "~55",
"expo-splash-screen": "~55.0.12",
"react": "19.2.0",
"react-native": "0.83.2"
},
"private": true
}
10 changes: 5 additions & 5 deletions apps/react-native-branch/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
},
"dependencies": {
"@config-plugins/react-native-branch": "*",
"expo": "~54",
"expo-splash-screen": "~31.0.9",
"react": "19.1.0",
"react-native": "0.81.4",
"react-native-branch": "^6.8.0"
"expo": "~55",
"expo-splash-screen": "~55.0.12",
"react": "19.2.0",
"react-native": "0.83.2",
"react-native-branch": "^6.9.0"
},
"private": true
}
8 changes: 4 additions & 4 deletions apps/react-native-dynamic-app-icon/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
},
"dependencies": {
"@config-plugins/react-native-dynamic-app-icon": "*",
"expo": "~54",
"expo-splash-screen": "~31.0.9",
"react": "19.1.0",
"react-native": "0.81.4",
"expo": "~55",
"expo-splash-screen": "~55.0.12",
"react": "19.2.0",
"react-native": "0.83.2",
"react-native-dynamic-app-icon": "^1.1.0"
},
"private": true
Expand Down
12 changes: 6 additions & 6 deletions apps/react-native-pdf/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
"dependencies": {
"@config-plugins/react-native-blob-util": "*",
"@config-plugins/react-native-pdf": "*",
"expo": "~54",
"expo-splash-screen": "~31.0.9",
"react": "19.1.0",
"react-native": "0.81.4",
"react-native-blob-util": "^0.21.2",
"react-native-pdf": "^6.7.7"
"expo": "~55",
"expo-splash-screen": "~55.0.12",
"react": "19.2.0",
"react-native": "0.83.2",
"react-native-blob-util": "^0.24.7",
"react-native-pdf": "^7.0.4"
},
"private": true
}
8 changes: 4 additions & 4 deletions apps/react-native-siri-shortcut/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
},
"dependencies": {
"@config-plugins/react-native-siri-shortcut": "*",
"expo": "~54",
"expo-splash-screen": "~31.0.9",
"react": "19.1.0",
"react-native": "0.81.4",
"expo": "~55",
"expo-splash-screen": "~55.0.12",
"react": "19.2.0",
"react-native": "0.83.2",
"react-native-siri-shortcut": "^3.2.4"
},
"private": true
Expand Down
8 changes: 4 additions & 4 deletions apps/react-native-webrtc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
},
"dependencies": {
"@config-plugins/react-native-webrtc": "*",
"expo": "~54",
"expo-splash-screen": "~31.0.9",
"react": "19.1.0",
"react-native": "0.81.4",
"expo": "~55",
"expo-splash-screen": "~55.0.12",
"react": "19.2.0",
"react-native": "0.83.2",
"react-native-webrtc": "^124.0.6"
},
"private": true
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"packages/*"
],
"resolutions": {
"expo": "^54"
"expo": "^55"
},
"devDependencies": {
"@babel/core": "^7.25.2",
Expand All @@ -25,7 +25,7 @@
"@types/prompts": "^2.0.13",
"@types/react": "~18.3.12",
"eslint": "^8.10.0",
"expo-module-scripts": "^4.1.6",
"expo-module-scripts": "^55.0.2",
"expo-yarn-workspaces": "^2.3.2",
"js-yaml": "^4.1.0",
"lerna": "3.4.1",
Expand Down
3 changes: 2 additions & 1 deletion packages/apple-settings/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ https://github.com/expo/config-plugins/assets/9664363/8be449b3-9aab-440c-b736-b4
Ensure you use versions that work together!

| `expo` | `@config-plugins/apple-settings` |
| ------ | -------------------------------- |
|--------|----------------------------------|
| 55.0.0 | ^7.0.0 |
| 54.0.0 | ^6.0.0 |
| 53.0.0 | ^5.0.0 |
| 52.0.0 | ^3.0.0 |
Expand Down
2 changes: 1 addition & 1 deletion packages/apple-settings/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"schema-utils": "^4.2.0"
},
"peerDependencies": {
"expo": "^54"
"expo": "^55"
},
"devDependencies": {
"json-schema-to-typescript": "^13.0.2"
Expand Down
3 changes: 2 additions & 1 deletion packages/ios-stickers/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ Config plugin to auto-configure iOS iMessage stickers
Ensure you use versions that work together!

| `expo` | `@config-plugins/ios-stickers` |
| ------ | ------------------------------ |
|--------|--------------------------------|
| 55.0.0 | 13.0.0 |
| 54.0.0 | 12.0.0 |
| 53.0.0 | 11.0.0 |
| 52.0.0 | 9.0.0 |
Expand Down
2 changes: 1 addition & 1 deletion packages/ios-stickers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@
"xcode": "^3.0.1"
},
"peerDependencies": {
"expo": "^54"
"expo": "^55"
}
}
7 changes: 4 additions & 3 deletions packages/react-native-adjust/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ Expo Config Plugin to auto-configure [`react-native-adjust`](https://www.npmjs.c
Ensure you use versions that work together!

| `expo` | `react-native-adjust` | `@config-plugins/react-native-adjust` |
| ------ | --------------------- | ------------------------------------- |
|--------| --------------------- |---------------------------------------|
| 55.0.0 | 5.1.0 | 13.0.0 |
| 54.0.0 | 5.1.0 | 12.0.0 |
| 53.0.0 | 5.1.0 | 11.0.0 |
| 52.0.0 | 5.0.2 | 9.0.0 |
Expand Down Expand Up @@ -93,8 +94,8 @@ You can combine multiple options:
{
"plugins": [
[
"@config-plugins/react-native-adjust",
{
"@config-plugins/react-native-adjust",
{
"targetAndroid12": true,
"metaInstallReferrer": true
}
Expand Down
2 changes: 1 addition & 1 deletion packages/react-native-adjust/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"react-native-adjust"
],
"peerDependencies": {
"expo": "^54"
"expo": "^55"
},
"upstreamPackage": "react-native-adjust"
}
3 changes: 2 additions & 1 deletion packages/react-native-blob-util/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ Config plugin to auto-configure [`react-native-blob-util`][lib] when the native
Ensure you use versions that work together!

| `expo` | `react-native-blob-util` | `@config-plugins/react-native-blob-util` |
| ------ | ------------------------ | ---------------------------------------- |
|--------| ------------------------ |------------------------------------------|
| 55.0.0 | 0.24.7 | 13.0.0 |
| 54.0.0 | 0.21.2 | 12.0.0 |
| 53.0.0 | 0.21.2 | 11.0.0 |
| 52.0.0 | 0.19.11 | 9.0.0 |
Expand Down
2 changes: 1 addition & 1 deletion packages/react-native-blob-util/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"expo"
],
"peerDependencies": {
"expo": "^54"
"expo": "^55"
},
"upstreamPackage": "react-native-blob-util"
}
19 changes: 10 additions & 9 deletions packages/react-native-branch/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,16 @@ Config plugin to auto-configure `react-native-branch` when the native code is ge

Ensure you use versions that work together!

| `expo` | `react-native-branch` | `@config-plugins/react-native-branch` |
| ------ | --------------------- | ------------------------------------- |
| 54.0.0 | 6.8.0 | 11.0.0 |
| 53.0.0 | 6.6.0 | 10.0.0 |
| 52.0.0 | 6.4.0 | 9.0.0 |
| 51.0.0 | 6.2.1 | 8.0.0 |
| 50.0.0 | 6.0.0 | 7.0.0 |
| 49.0.0 | 5.9.0 | 6.0.0 |
| 48.0.0 | 5.7.0 | 5.0.0 |
| `expo` | `react-native-branch` | `@config-plugins/react-native-branch` |
|--------|-------------------------|---------------------------------------|
| 55.0.0 | 6.9.0 | 12.0.0 |
| 54.0.0 | 6.8.0 | 11.0.0 |
| 53.0.0 | 6.6.0 | 10.0.0 |
| 52.0.0 | 6.4.0 | 9.0.0 |
| 51.0.0 | 6.2.1 3 | 8.0.0 |
| 50.0.0 | 6.0.0 | 7.0.0 |
| 49.0.0 | 5.9.0 | 6.0.0 |
| 48.0.0 | 5.7.0 | 5.0.0 |

## Expo installation

Expand Down
2 changes: 1 addition & 1 deletion packages/react-native-branch/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"react-native-branch"
],
"peerDependencies": {
"expo": "^54"
"expo": "^55"
},
"upstreamPackage": "react-native-branch",
"dependencies": {
Expand Down
3 changes: 2 additions & 1 deletion packages/react-native-callkeep/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ Config plugin to auto-configure `react-native-callkeep` when the native code is
Ensure you use versions that work together!

| `expo` | `react-native-callkeep` | `@config-plugins/react-native-callkeep` |
| ------ | ----------------------- | --------------------------------------- |
|--------| ----------------------- |-----------------------------------------|
| 55.0.0 | 4.3.16 | 13.0.0 |
| 54.0.0 | 4.3.16 | 12.0.0 |
| 53.0.0 | 4.3.16 | 11.0.0 |
| 52.0.0 | 4.3.16 | 9.0.0 |
Expand Down
2 changes: 1 addition & 1 deletion packages/react-native-callkeep/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"expo"
],
"peerDependencies": {
"expo": "^54"
"expo": "^55"
},
"upstreamPackage": "react-native-callkeep"
}
3 changes: 2 additions & 1 deletion packages/react-native-dynamic-app-icon/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ Config plugin to auto-configure `react-native-dynamic-app-icon` when the native
Ensure you use versions that work together!

| `expo` | `react-native-dynamic-app-icon` | `@config-plugins/react-native-dynamic-app-icon` |
| ------ | ------------------------------- | ----------------------------------------------- |
|--------| ------------------------------- |-------------------------------------------------|
| 55.0.0 | 1.1.0 | 13.0.0 |
| 54.0.0 | 1.1.0 | 12.0.0 |
| 53.0.0 | 1.1.0 | 11.0.0 |
| 52.0.0 | 1.1.0 | 9.0.0 |
Expand Down
Loading
Loading