Commit 80515346 authored by Fred's avatar Fred

fix version for upload appstore

parent 5df89b40
......@@ -9,7 +9,7 @@
"android",
"web"
],
"version": "a.2006150700",
"version": "2.0.0",
"orientation": "portrait",
"icon": "./assets/excelso.png",
"splash": {
......@@ -26,11 +26,11 @@
"ios": {
"supportsTablet": true,
"bundleIdentifier": "local.ravExcelso",
"buildNumber": "2006150700"
"buildNumber": "2006151800"
},
"android": {
"package": "local.ravExcelso",
"versionCode": 2006150700,
"versionCode": 2006151800,
"config": {
"googleMaps": {
"apiKey": "AIzaSyAcCfuNHVFstDUE-ZDafWsiUmA3ON79cqo"
......
......@@ -378,7 +378,11 @@ class Account extends React.Component {
}
<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>
</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