Browse Source

Updated icons and fixed about links

keplyx 4 years ago
parent
commit
c8bab93868

+ 2
- 2
app.json View File

@@ -10,7 +10,7 @@
10 10
       "android",
11 11
       "web"
12 12
     ],
13
-    "version": "0.0.13",
13
+    "version": "0.0.14",
14 14
     "orientation": "portrait",
15 15
     "primaryColor": "#be1522",
16 16
     "icon": "./assets/android.icon.png",
@@ -36,7 +36,7 @@
36 36
     },
37 37
     "android": {
38 38
       "package": "fr.amicaleinsat.application",
39
-      "versionCode": 1,
39
+      "versionCode": 2,
40 40
       "icon": "./assets/android.icon.png",
41 41
       "adaptiveIcon": {
42 42
         "foregroundImage": "./assets/android.adaptive-icon.png",

BIN
assets/amicale.png View File


BIN
assets/android.adaptive-icon.png View File


BIN
assets/android.icon.png View File


BIN
assets/icon.png View File


BIN
assets/ios.icon.png View File


+ 2
- 2
screens/About/AboutScreen.js View File

@@ -11,13 +11,13 @@ import CustomMaterialIcon from "../../components/CustomMaterialIcon";
11 11
 
12 12
 const links = {
13 13
     appstore: 'https://qwant.com',
14
-    playstore: 'https://qwant.com',
14
+    playstore: 'https://play.google.com/store/apps/details?id=fr.amicaleinsat.application',
15 15
     expo: 'https://expo.io/@amicaleinsat/application-amicale',
16 16
     git: 'https://git.srv-falcon.etud.insa-toulouse.fr/vergnet/application-amicale/src/branch/master/README.md',
17 17
     bugs: 'https://git.srv-falcon.etud.insa-toulouse.fr/vergnet/application-amicale/issues',
18 18
     changelog: 'https://git.srv-falcon.etud.insa-toulouse.fr/vergnet/application-amicale/src/branch/master/Changelog.md',
19 19
     license: 'https://git.srv-falcon.etud.insa-toulouse.fr/vergnet/application-amicale/src/branch/master/LICENSE',
20
-    mail: "mailto:arnaud.vergnet@netc.fr?subject=Application Amicale INSA Toulouse&body=",
20
+    mail: "mailto:vergnet@etud.insa-toulouse.fr?subject=Application Amicale INSA Toulouse&body=",
21 21
     linkedin: 'https://www.linkedin.com/in/arnaud-vergnet-434ba5179/',
22 22
     facebook: 'https://www.facebook.com/arnaud.vergnet',
23 23
     react: 'https://facebook.github.io/react-native/',

+ 6
- 8
screens/PlanningScreen.js View File

@@ -3,10 +3,10 @@
3 3
 import * as React from 'react';
4 4
 import {Button, H3, Text} from 'native-base';
5 5
 import i18n from "i18n-js";
6
-import {Platform, View} from "react-native";
6
+import {View} from "react-native";
7 7
 import CustomMaterialIcon from "../components/CustomMaterialIcon";
8 8
 import ThemeManager from "../utils/ThemeManager";
9
-import {Linking, Notifications} from "expo";
9
+import {Linking} from "expo";
10 10
 import BaseContainer from "../components/BaseContainer";
11 11
 
12 12
 type Props = {
@@ -63,12 +63,10 @@ export default class PlanningScreen extends React.Component<Props> {
63 63
                     }}>
64 64
                         {i18n.t('planningScreen.wipSubtitle')}
65 65
                     </Text>
66
-                    {Platform.OS === 'android' ?
67
-                        <Button block style={{marginTop: 20, marginRight: 10, marginLeft: 10}}
68
-                                onPress={() => openWebLink('https://expo.io/@amicaleinsat/application-amicale')}>
69
-                            <Text>Try the beta</Text>
70
-                        </Button>
71
-                        : <View/>}
66
+                    <Button block style={{marginTop: 20, marginRight: 10, marginLeft: 10}}
67
+                            onPress={() => openWebLink('https://www.facebook.com/groups/2054302624595234/')}>
68
+                        <Text>Clubs et Evenements</Text>
69
+                    </Button>
72 70
                 </View>
73 71
             </BaseContainer>
74 72
         );

Loading…
Cancel
Save