Commit 80515346 authored by Fred's avatar Fred

fix version for upload appstore

parent 5df89b40
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
"android", "android",
"web" "web"
], ],
"version": "a.2006150700", "version": "2.0.0",
"orientation": "portrait", "orientation": "portrait",
"icon": "./assets/excelso.png", "icon": "./assets/excelso.png",
"splash": { "splash": {
...@@ -26,11 +26,11 @@ ...@@ -26,11 +26,11 @@
"ios": { "ios": {
"supportsTablet": true, "supportsTablet": true,
"bundleIdentifier": "local.ravExcelso", "bundleIdentifier": "local.ravExcelso",
"buildNumber": "2006150700" "buildNumber": "2006151800"
}, },
"android": { "android": {
"package": "local.ravExcelso", "package": "local.ravExcelso",
"versionCode": 2006150700, "versionCode": 2006151800,
"config": { "config": {
"googleMaps": { "googleMaps": {
"apiKey": "AIzaSyAcCfuNHVFstDUE-ZDafWsiUmA3ON79cqo" "apiKey": "AIzaSyAcCfuNHVFstDUE-ZDafWsiUmA3ON79cqo"
......
...@@ -378,7 +378,11 @@ class Account extends React.Component { ...@@ -378,7 +378,11 @@ class Account extends React.Component {
} }
<View style={{ flex: 1, marginBottom: 10 }}> <View style={{ flex: 1, marginBottom: 10 }}>
<Text style={{ color: 'grey', fontSize: 12, textAlign: 'center' }}>Build Version : {Constants.manifest.version}</Text> {Platform.OS === 'ios' ? (
<Text style={{ color: 'grey', fontSize: 12, textAlign: 'center' }}>Version {Constants.manifest.version} Build {Constants.manifest.ios.buildNumber}</Text>
) : (
<Text style={{ color: 'grey', fontSize: 12, textAlign: 'center' }}>Version {Constants.manifest.version} Build {Constants.manifest.android.versionCode}</Text>
)}
</View> </View>
</ScrollView> </ScrollView>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment