Skip to content

Commit

Permalink
feat: update expo example to expo 52
Browse files Browse the repository at this point in the history
  • Loading branch information
sAleksovski committed Nov 19, 2024
1 parent 4162d75 commit 9caa231
Show file tree
Hide file tree
Showing 8 changed files with 2,690 additions and 2,440 deletions.
10 changes: 5 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@ docs/docs/public-api/

# Yarn
**/.yarn/*
**/!.yarn/patches
**/!.yarn/plugins
**/!.yarn/releases
**/!.yarn/sdks
**/!.yarn/versions
!**/.yarn/patches
!**/.yarn/plugins
!**/.yarn/releases
!**/.yarn/sdks
!**/.yarn/versions

4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Support for React Native 0.76

### Breaking Changes

- Dropped support for React Native <0.76. For older versions use 0.14.2

## [0.14.2] - 2024-11-19

### Fixed
Expand Down
874 changes: 874 additions & 0 deletions example-expo/.yarn/releases/yarn-3.6.4.cjs

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions example-expo/.yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
yarnPath: .yarn/releases/yarn-3.6.4.cjs
1 change: 1 addition & 0 deletions example-expo/app.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ export default ({ config }: ConfigContext): ExpoConfig => ({
supportsTablet: true,
},
scheme: 'androidwidgetexample',
newArchEnabled: true,
android: {
adaptiveIcon: {
foregroundImage: './assets/adaptive-icon.png',
Expand Down
26 changes: 14 additions & 12 deletions example-expo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,23 @@
"build:apk": "eas build --platform android"
},
"dependencies": {
"@react-native-async-storage/async-storage": "1.23.1",
"@react-navigation/native": "^6.1.6",
"@react-navigation/native-stack": "^6.9.12",
"expo": "^51.0.38",
"expo-dev-client": "~4.0.29",
"react": "18.2.0",
"react-native": "0.74.5",
"react-native-android-widget": "./react-native-android-widget-64036.tgz",
"react-native-safe-area-context": "4.10.5",
"react-native-screens": "3.31.1"
"@react-native-async-storage/async-storage": "^2.0.0",
"@react-navigation/native": "^6.1.14",
"@react-navigation/native-stack": "^6.9.22",
"expo": "^52.0.0-preview.23",
"expo-dev-client": "~5.0.0-preview.9",
"expo-splash-screen": "^0.27.6",
"react": "18.3.1",
"react-native": "0.76.1",
"react-native-android-widget": "./react-native-android-widget-86353.tgz",
"react-native-safe-area-context": "4.12.0",
"react-native-screens": "^3.34.0"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@types/react": "~18.2.79",
"@types/react": "~18.3.12",
"typescript": "~5.3.3"
},
"private": true
"private": true,
"packageManager": "[email protected]"
}
Loading

0 comments on commit 9caa231

Please sign in to comment.