Merge pull request #15026 from abpframework/update/expo-47

Update expo 47
pull/15041/head
Muhammed Altuğ 3 years ago committed by GitHub
commit 12ba5c04a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,10 +1,13 @@
const yourIP = 'Your Local IP Address etc 192.168.1.64'; // See the docs https://docs.abp.io/en/abp/latest/Getting-Started-React-Native?Tiered=No
const port = 44305;
const apiUrl = `http://${yourIP}:${port}`;
const ENV = { const ENV = {
dev: { dev: {
apiUrl: 'http://localhost:44305', apiUrl: apiUrl,
oAuthConfig: { oAuthConfig: {
issuer: 'http://localhost:44305', issuer: apiUrl,
clientId: 'MyProjectName_App', clientId: 'MyProjectName_App',
clientSecret: '1q2w3e*',
scope: 'offline_access MyProjectName', scope: 'offline_access MyProjectName',
}, },
localization: { localization: {
@ -16,7 +19,6 @@ const ENV = {
oAuthConfig: { oAuthConfig: {
issuer: 'http://localhost:44305', issuer: 'http://localhost:44305',
clientId: 'MyProjectName_App', clientId: 'MyProjectName_App',
clientSecret: '1q2w3e*',
scope: 'offline_access MyProjectName', scope: 'offline_access MyProjectName',
}, },
localization: { localization: {

@ -10,34 +10,35 @@
"eject": "expo eject" "eject": "expo eject"
}, },
"dependencies": { "dependencies": {
"@react-native-async-storage/async-storage": "~1.15.0", "@react-native-async-storage/async-storage": "~1.17.11",
"@react-navigation/drawer": "^6.1.8", "@react-navigation/drawer": "^6.5.4",
"@react-navigation/native": "^6.0.6", "@react-navigation/native": "^6.1.0",
"@react-navigation/native-stack": "^6.2.5", "@react-navigation/native-stack": "^6.9.5",
"@reduxjs/toolkit": "^1.7.1", "@reduxjs/toolkit": "^1.7.1",
"axios": "^0.24.0", "axios": "~1.2.1",
"expo": "~44.0.0", "expo": "^47.0.0",
"expo-status-bar": "~1.2.0", "expo-status-bar": "~1.4.2",
"formik": "^2.2.9", "formik": "^2.2.9",
"i18n-js": "^3.8.0", "i18n-js": "^3.8.0",
"native-base": "^3.3.1", "native-base": "^3.4.25",
"prop-types": "^15.8.1", "prop-types": "^15.8.1",
"react": "17.0.1", "react": "18.1.0",
"react-dom": "17.0.1", "react-dom": "18.1.0",
"react-native": "0.64.3", "react-native": "0.70.5",
"react-native-gesture-handler": "~2.1.0", "react-native-chart-kit": "^6.11.0",
"react-native-reanimated": "~2.3.1", "react-native-gesture-handler": "~2.8.0",
"react-native-safe-area-context": "3.3.2", "react-native-reanimated": "~2.12.0",
"react-native-screens": "~3.10.1", "react-native-safe-area-context": "4.4.1",
"react-native-svg": "12.1.1", "react-native-screens": "~3.18.0",
"react-native-web": "0.17.1", "react-native-svg": "13.4.0",
"react-redux": "^7.2.6", "react-native-web": "~0.18.7",
"react-redux": "^8.0.5",
"redux-persist": "^6.0.0", "redux-persist": "^6.0.0",
"redux-saga": "^1.1.3", "redux-saga": "^1.2.1",
"yup": "^0.32.11" "yup": "^0.32.11"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "^7.12.9" "@babel/core": "^7.19.3"
}, },
"private": true "private": true
} }

Loading…
Cancel
Save