🔧 chore(eas.json): add android buildType to development and production configurations to specify APK build type

🔧 chore(package.json): downgrade @react-native-async-storage/async-storage, react-native-pager-view, react-native-safe-area-context, and react-native-screens to improve compatibility
 feat(package.json): add expo-dev-client to dependencies to enable development client functionality
This commit is contained in:
Djalim Simaila 2024-04-05 11:20:17 +02:00
parent 69f7bfd78c
commit b11eb932d6
3 changed files with 14 additions and 6 deletions

BIN
bun.lockb

Binary file not shown.

View File

@ -5,12 +5,19 @@
"build": {
"development": {
"developmentClient": true,
"distribution": "internal"
"distribution": "internal",
"android": {
"buildType": "apk"
}
},
"preview": {
"distribution": "internal"
},
"production": {}
"production": {
"android": {
"buildType": "apk"
}
}
},
"submit": {
"production": {}

View File

@ -10,7 +10,7 @@
},
"dependencies": {
"@expo/metro-runtime": "^3.1.3",
"@react-native-async-storage/async-storage": "^1.23.1",
"@react-native-async-storage/async-storage": "1.21.0",
"@react-navigation/material-bottom-tabs": "^6.2.28",
"@react-navigation/material-top-tabs": "^6.6.13",
"@react-navigation/native": "^6.1.17",
@ -19,6 +19,7 @@
"axios": "^1.6.8",
"expo": "~50.0.14",
"expo-clipboard": "~5.0.1",
"expo-dev-client": "^3.3.11",
"expo-status-bar": "~1.11.1",
"expo-system-ui": "^2.9.3",
"react": "18.2.0",
@ -27,12 +28,12 @@
"react-native-async-storage": "^0.0.1",
"react-native-drawer-layout": "^3.3.0",
"react-native-gesture-handler": "~2.14.0",
"react-native-pager-view": "^6.3.0",
"react-native-pager-view": "6.2.3",
"react-native-paper": "^5.12.3",
"react-native-reanimated": "~3.6.2",
"react-native-safe-area-context": "^4.9.0",
"react-native-safe-area-context": "4.8.2",
"react-native-safe-area-view": "^1.1.1",
"react-native-screens": "^3.30.1",
"react-native-screens": "~3.29.0",
"react-native-simple-toast": "^3.3.1",
"react-native-tab-view": "^3.5.2",
"react-native-toast-notifications": "^3.4.0",