other changes
This commit is contained in:
parent
6c286f5093
commit
f92bf954a2
|
@ -3,8 +3,11 @@
|
||||||
"name": "Enatega",
|
"name": "Enatega",
|
||||||
"version": "1.0.21",
|
"version": "1.0.21",
|
||||||
"scheme": "enategasinglevendor",
|
"scheme": "enategasinglevendor",
|
||||||
"description": "Enatega is a starter kit food ordering app built in React Native using Expo for IOS and Android. It's made keeping good aesthetics in mind as well keeping the best coding practices in mind. Its fully customisable to easily help you in your next food delivery project. https://market.nativebase.io/view/react-native-food-delivery-backend-app",
|
"description": "Enatega is a starter kit food ordering app built in React Native using Expo for IOS and Android. It's made keeping good aesthetics in mind as well keeping the best coding practices in mind. Its fully customisable to easily help you in your next food delivery project. https://enatega.com/enatega-single-vendor/",
|
||||||
"slug": "enategasinglevendor",
|
"slug": "enategasinglevendor",
|
||||||
|
"owner": "ninjas_code",
|
||||||
|
"currentFullName": "@ninjas_code/enategasinglevendor",
|
||||||
|
"originalFullName": "@ninjas_code/enategasinglevendor",
|
||||||
"privacy": "public",
|
"privacy": "public",
|
||||||
"androidStatusBar": {
|
"androidStatusBar": {
|
||||||
"backgroundColor": "#000"
|
"backgroundColor": "#000"
|
||||||
|
@ -21,7 +24,8 @@
|
||||||
"backgroundColor": "#febb2c"
|
"backgroundColor": "#febb2c"
|
||||||
},
|
},
|
||||||
"updates": {
|
"updates": {
|
||||||
"fallbackToCacheTimeout": 0
|
"fallbackToCacheTimeout": 0,
|
||||||
|
"url": "https://u.expo.dev/e7c3fd70-4054-4dc8-bbdb-a572a3cc6fb1"
|
||||||
},
|
},
|
||||||
"assetBundlePatterns": [
|
"assetBundlePatterns": [
|
||||||
"**/*"
|
"**/*"
|
||||||
|
@ -76,8 +80,11 @@
|
||||||
"facebookDisplayName": "Food delivery",
|
"facebookDisplayName": "Food delivery",
|
||||||
"extra": {
|
"extra": {
|
||||||
"eas": {
|
"eas": {
|
||||||
"projectId": "0b51ea6b-d9fd-48e2-9480-54149ca73a7a"
|
"projectId": "e7c3fd70-4054-4dc8-bbdb-a572a3cc6fb1"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"runtimeVersion": {
|
||||||
|
"policy": "sdkVersion"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -8,20 +8,20 @@
|
||||||
"distribution": "internal",
|
"distribution": "internal",
|
||||||
"ios": {
|
"ios": {
|
||||||
"resourceClass": "m-medium"
|
"resourceClass": "m-medium"
|
||||||
}
|
},
|
||||||
|
"channel": "development"
|
||||||
},
|
},
|
||||||
"preview": {
|
"preview": {
|
||||||
"distribution": "internal",
|
"distribution": "internal",
|
||||||
"ios": {
|
"ios": {
|
||||||
"resourceClass": "m-medium"
|
"resourceClass": "m-medium"
|
||||||
}
|
},
|
||||||
|
"channel": "preview"
|
||||||
},
|
},
|
||||||
"production": {
|
"production": {
|
||||||
"developmentClient": false,
|
"channel": "production",
|
||||||
"releaseChannel": "production",
|
"android": {
|
||||||
"distribution": "store",
|
"buildType": "apk"
|
||||||
"ios": {
|
|
||||||
"resourceClass": "m-medium"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -11,7 +11,7 @@ const ENV = {
|
||||||
WS_GRAPHQL_URL: "wss://enatega-singlevendor.up.railway.app/graphql",
|
WS_GRAPHQL_URL: "wss://enatega-singlevendor.up.railway.app/graphql",
|
||||||
SERVER_URL: "https://enatega-singlevendor.up.railway.app/",
|
SERVER_URL: "https://enatega-singlevendor.up.railway.app/",
|
||||||
Expo_CLIENT_ID_GOOGLE:
|
Expo_CLIENT_ID_GOOGLE:
|
||||||
"630195385603-82e52jpb722a8l0huhkspq3tqh2d6r6f.apps.googleusercontent.com",
|
"967541328677-2lkpq6a9cj7bnokht7ich14igsi3brs5.apps.googleusercontent.com",
|
||||||
IOS_CLIENT_ID_GOOGLE:
|
IOS_CLIENT_ID_GOOGLE:
|
||||||
"967541328677-uq7f7odvmeea2pb2sq0l7q320ds86536.apps.googleusercontent.com",
|
"967541328677-uq7f7odvmeea2pb2sq0l7q320ds86536.apps.googleusercontent.com",
|
||||||
ANDROID_CLIENT_ID_GOOGLE:
|
ANDROID_CLIENT_ID_GOOGLE:
|
||||||
|
@ -54,7 +54,7 @@ const ENV = {
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
const getEnvVars = (env = Constants.manifest.releaseChannel) => {
|
const getEnvVars = (env = Constants.manifest/*.releaseChannel*/) => {
|
||||||
// What is __DEV__ ?
|
// What is __DEV__ ?
|
||||||
// This variable is set to true when react-native is running in Dev mode.
|
// This variable is set to true when react-native is running in Dev mode.
|
||||||
// __DEV__ is true when run locally, but false when published.
|
// __DEV__ is true when run locally, but false when published.
|
||||||
|
@ -63,8 +63,8 @@ const getEnvVars = (env = Constants.manifest.releaseChannel) => {
|
||||||
return ENV.development;
|
return ENV.development;
|
||||||
} else if (env === "production") {
|
} else if (env === "production") {
|
||||||
return ENV.production;
|
return ENV.production;
|
||||||
} else if (env === "staging") {
|
// } else if (env === "staging") {
|
||||||
return ENV.staging;
|
// return ENV.staging;
|
||||||
} else {
|
} else {
|
||||||
return ENV.production;
|
return ENV.production;
|
||||||
}
|
}
|
||||||
|
|
|
@ -39,13 +39,14 @@ function AnimatedSplashScreen({ children, image }) {
|
||||||
{!animationCompleted && (
|
{!animationCompleted && (
|
||||||
<Animated.View
|
<Animated.View
|
||||||
pointerEvents="none"
|
pointerEvents="none"
|
||||||
style={[
|
// style={[
|
||||||
StyleSheet.absoluteFill,
|
// StyleSheet.absoluteFill,
|
||||||
{
|
// {
|
||||||
backgroundColor: Constants.manifest.splash.backgroundColor,
|
// backgroundColor: Constants.manifest.splash.backgroundColor,
|
||||||
opacity: animation
|
// opacity: animation
|
||||||
}
|
// }
|
||||||
]}>
|
// ]}
|
||||||
|
>
|
||||||
<Animated.Image
|
<Animated.Image
|
||||||
style={{
|
style={{
|
||||||
width: '100%',
|
width: '100%',
|
||||||
|
|
Loading…
Reference in New Issue