leonlin 8 年 前
コミット
65a5c7f19c
共有61 個のファイルを変更した314 個の追加376 個の削除を含む
  1. 0 0
      FMS/.babelrc
  2. 0 0
      FMS/.buckconfig
  3. 0 0
      FMS/.flowconfig
  4. 0 0
      FMS/.gitattributes
  5. 0 0
      FMS/.gitignore
  6. 0 0
      FMS/.watchmanconfig
  7. 0 0
      FMS/__tests__/index.android.js
  8. 0 0
      FMS/__tests__/index.ios.js
  9. 2 2
      app/android/app/BUCK
  10. 1 1
      app/android/app/build.gradle
  11. 0 0
      FMS/android/app/proguard-rules.pro
  12. 1 1
      app/android/app/src/main/AndroidManifest.xml
  13. 0 0
      FMS/android/app/src/main/assets/fonts/Entypo.ttf
  14. 0 0
      FMS/android/app/src/main/assets/fonts/EvilIcons.ttf
  15. 0 0
      FMS/android/app/src/main/assets/fonts/FontAwesome.ttf
  16. 0 0
      FMS/android/app/src/main/assets/fonts/Foundation.ttf
  17. 0 0
      FMS/android/app/src/main/assets/fonts/Ionicons.ttf
  18. 0 0
      FMS/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf
  19. 0 0
      FMS/android/app/src/main/assets/fonts/MaterialIcons.ttf
  20. 0 0
      FMS/android/app/src/main/assets/fonts/Octicons.ttf
  21. 0 0
      FMS/android/app/src/main/assets/fonts/SimpleLineIcons.ttf
  22. 0 0
      FMS/android/app/src/main/assets/fonts/Zocial.ttf
  23. 2 2
      app/android/app/src/main/java/com/app/MainActivity.java
  24. 1 1
      app/android/app/src/main/java/com/app/MainApplication.java
  25. 0 0
      FMS/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
  26. 0 0
      FMS/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
  27. 0 0
      FMS/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
  28. 0 0
      FMS/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
  29. 0 0
      FMS/android/app/src/main/res/values/strings.xml
  30. 0 0
      FMS/android/app/src/main/res/values/styles.xml
  31. 0 0
      FMS/android/build.gradle
  32. 0 0
      FMS/android/gradle.properties
  33. 0 0
      FMS/android/gradle/wrapper/gradle-wrapper.jar
  34. 0 0
      FMS/android/gradle/wrapper/gradle-wrapper.properties
  35. 0 0
      FMS/android/gradlew
  36. 0 0
      FMS/android/gradlew.bat
  37. 0 0
      FMS/android/keystores/BUCK
  38. 0 0
      FMS/android/keystores/debug.keystore.properties
  39. 1 1
      app/android/settings.gradle
  40. 6 0
      FMS/configs/general.json.default
  41. 53 0
      FMS/index.android.js
  42. 59 43
      app/index.ios.js
  43. 0 0
      FMS/ios/FMS-tvOS/Info.plist
  44. 0 0
      FMS/ios/FMS-tvOSTests/Info.plist
  45. 110 141
      app/ios/FMS.xcodeproj/project.pbxproj
  46. 0 0
      FMS/ios/FMS.xcodeproj/xcshareddata/xcschemes/FMS-tvOS.xcscheme
  47. 4 4
      app/ios/FMS.xcodeproj/xcshareddata/xcschemes/app.xcscheme
  48. 0 0
      FMS/ios/FMS/AppDelegate.h
  49. 1 1
      app/ios/app/AppDelegate.m
  50. 4 4
      app/ios/app/Base.lproj/LaunchScreen.xib
  51. 0 0
      FMS/ios/FMS/Images.xcassets/AppIcon.appiconset/Contents.json
  52. 66 0
      FMS/ios/FMS/Info.plist
  53. 0 0
      FMS/ios/FMS/main.m
  54. 2 2
      app/ios/appTests/appTests.m
  55. 0 0
      FMS/ios/FMSTests/Info.plist
  56. 1 1
      app/package.json
  57. 0 0
      FMS/src/images/logo@1x.png
  58. 0 0
      FMS/src/images/logo@2x.png
  59. 0 0
      FMS/src/images/logo@3x.png
  60. 0 104
      app/index.android.js
  61. 0 68
      app/ios/app/Info.plist

app/.babelrc → FMS/.babelrc


app/.buckconfig → FMS/.buckconfig


app/.flowconfig → FMS/.flowconfig


app/.gitattributes → FMS/.gitattributes


app/.gitignore → FMS/.gitignore


app/.watchmanconfig → FMS/.watchmanconfig


app/__tests__/index.android.js → FMS/__tests__/index.android.js


app/__tests__/index.ios.js → FMS/__tests__/index.ios.js


+ 2 - 2
app/android/app/BUCK

@@ -46,13 +46,13 @@ android_library(
46 46
 
47 47
 android_build_config(
48 48
   name = 'build_config',
49
-  package = 'com.app',
49
+  package = 'com.fms',
50 50
 )
51 51
 
52 52
 android_resource(
53 53
   name = 'res',
54 54
   res = 'src/main/res',
55
-  package = 'com.app',
55
+  package = 'com.fms',
56 56
 )
57 57
 
58 58
 android_binary(

+ 1 - 1
app/android/app/build.gradle

@@ -87,7 +87,7 @@ android {
87 87
     buildToolsVersion "23.0.1"
88 88
 
89 89
     defaultConfig {
90
-        applicationId "com.app"
90
+        applicationId "com.fms"
91 91
         minSdkVersion 16
92 92
         targetSdkVersion 22
93 93
         versionCode 1

app/android/app/proguard-rules.pro → FMS/android/app/proguard-rules.pro


+ 1 - 1
app/android/app/src/main/AndroidManifest.xml

@@ -1,5 +1,5 @@
1 1
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
2
-    package="com.app"
2
+    package="com.fms"
3 3
     android:versionCode="1"
4 4
     android:versionName="1.0">
5 5
 

app/android/app/src/main/assets/fonts/Entypo.ttf → FMS/android/app/src/main/assets/fonts/Entypo.ttf


app/android/app/src/main/assets/fonts/EvilIcons.ttf → FMS/android/app/src/main/assets/fonts/EvilIcons.ttf


app/android/app/src/main/assets/fonts/FontAwesome.ttf → FMS/android/app/src/main/assets/fonts/FontAwesome.ttf


app/android/app/src/main/assets/fonts/Foundation.ttf → FMS/android/app/src/main/assets/fonts/Foundation.ttf


app/android/app/src/main/assets/fonts/Ionicons.ttf → FMS/android/app/src/main/assets/fonts/Ionicons.ttf


app/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf → FMS/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf


app/android/app/src/main/assets/fonts/MaterialIcons.ttf → FMS/android/app/src/main/assets/fonts/MaterialIcons.ttf


app/android/app/src/main/assets/fonts/Octicons.ttf → FMS/android/app/src/main/assets/fonts/Octicons.ttf


app/android/app/src/main/assets/fonts/SimpleLineIcons.ttf → FMS/android/app/src/main/assets/fonts/SimpleLineIcons.ttf


app/android/app/src/main/assets/fonts/Zocial.ttf → FMS/android/app/src/main/assets/fonts/Zocial.ttf


+ 2 - 2
app/android/app/src/main/java/com/app/MainActivity.java

@@ -1,4 +1,4 @@
1
-package com.app;
1
+package com.fms;
2 2
 
3 3
 import com.facebook.react.ReactActivity;
4 4
 
@@ -10,6 +10,6 @@ public class MainActivity extends ReactActivity {
10 10
      */
11 11
     @Override
12 12
     protected String getMainComponentName() {
13
-        return "app";
13
+        return "FMS";
14 14
     }
15 15
 }

+ 1 - 1
app/android/app/src/main/java/com/app/MainApplication.java

@@ -1,4 +1,4 @@
1
-package com.app;
1
+package com.fms;
2 2
 
3 3
 import android.app.Application;
4 4
 import android.util.Log;

app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png → FMS/android/app/src/main/res/mipmap-hdpi/ic_launcher.png


app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png → FMS/android/app/src/main/res/mipmap-mdpi/ic_launcher.png


app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png → FMS/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png


app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png → FMS/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png


app/android/app/src/main/res/values/strings.xml → FMS/android/app/src/main/res/values/strings.xml


app/android/app/src/main/res/values/styles.xml → FMS/android/app/src/main/res/values/styles.xml


app/android/build.gradle → FMS/android/build.gradle


app/android/gradle.properties → FMS/android/gradle.properties


app/android/gradle/wrapper/gradle-wrapper.jar → FMS/android/gradle/wrapper/gradle-wrapper.jar


app/android/gradle/wrapper/gradle-wrapper.properties → FMS/android/gradle/wrapper/gradle-wrapper.properties


app/android/gradlew → FMS/android/gradlew


app/android/gradlew.bat → FMS/android/gradlew.bat


app/android/keystores/BUCK → FMS/android/keystores/BUCK


app/android/keystores/debug.keystore.properties → FMS/android/keystores/debug.keystore.properties


+ 1 - 1
app/android/settings.gradle

@@ -1,4 +1,4 @@
1
-rootProject.name = 'app'
1
+rootProject.name = 'FMS'
2 2
 include ':react-native-vector-icons'
3 3
 project(':react-native-vector-icons').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-vector-icons/android')
4 4
 

+ 6 - 0
FMS/configs/general.json.default

@@ -0,0 +1,6 @@
1
+{
2
+	"service": {
3
+		"name": "FMS",
4
+		"external_url": "http://localhost:3001"
5
+	}
6
+}

+ 53 - 0
FMS/index.android.js

@@ -0,0 +1,53 @@
1
+/**
2
+ * Sample React Native App
3
+ * https://github.com/facebook/react-native
4
+ * @flow
5
+ */
6
+
7
+import React, { Component } from 'react';
8
+import {
9
+  AppRegistry,
10
+  StyleSheet,
11
+  Text,
12
+  View
13
+} from 'react-native';
14
+
15
+export default class FMS extends Component {
16
+  render() {
17
+    return (
18
+      <View style={styles.container}>
19
+        <Text style={styles.welcome}>
20
+          Welcome to React Native!
21
+        </Text>
22
+        <Text style={styles.instructions}>
23
+          To get started, edit index.android.js
24
+        </Text>
25
+        <Text style={styles.instructions}>
26
+          Double tap R on your keyboard to reload,{'\n'}
27
+          Shake or press menu button for dev menu
28
+        </Text>
29
+      </View>
30
+    );
31
+  }
32
+}
33
+
34
+const styles = StyleSheet.create({
35
+  container: {
36
+    flex: 1,
37
+    justifyContent: 'center',
38
+    alignItems: 'center',
39
+    backgroundColor: '#F5FCFF',
40
+  },
41
+  welcome: {
42
+    fontSize: 20,
43
+    textAlign: 'center',
44
+    margin: 10,
45
+  },
46
+  instructions: {
47
+    textAlign: 'center',
48
+    color: '#333333',
49
+    marginBottom: 5,
50
+  },
51
+});
52
+
53
+AppRegistry.registerComponent('FMS', () => FMS);

+ 59 - 43
app/index.ios.js

@@ -1,8 +1,10 @@
1 1
 /**
2
-* Sample React Native App
3
-* https://github.com/facebook/react-native
4
-* @flow
5
-*/
2
+ * Sample React Native App
3
+ * https://github.com/facebook/react-native
4
+ * @flow
5
+ */
6
+
7
+// signup: name, phone, email, passwprd
6 8
 
7 9
 import React, { Component } from 'react';
8 10
 import {
@@ -19,44 +21,8 @@ import {
19 21
     Button
20 22
 } from 'native-base';
21 23
 
22
-export default class app extends Component {
23
-    render() {
24
-        return (
25
-            <View style={styles.container}>
26
-                <Image
27
-                    source={require('./images/logo@1x.png')}
28
-                />
29
-                <Text style={styles.companyName}>
30
-                    Future Message Service
31
-                </Text>
32
-                <View style={styles.main}>
33
-                    <InputGroup borderType="regular" style={styles.account}>
34
-                        <Input placeholder="Email"/>
35
-                    </InputGroup>
36
-                    <InputGroup borderType="regular" style={styles.password}>
37
-                        <Input placeholder="Password"/>
38
-                    </InputGroup>
39
-                    <Button transparent>
40
-                        <Text style={styles.signup}>
41
-                            Sign Up
42
-                        </Text>
43
-                    </Button>
44
-                    <Button block style={styles.login}>
45
-                        Login !
46
-                    </Button>
47
-                </View>
48
-
49
-                <View style={styles.forgot}>
50
-                    <Button transparent>
51
-                        <Text style={styles.signup}>
52
-                            Forgot password ?
53
-                        </Text>
54
-                    </Button>
55
-                </View>
56
-            </View>
57
-        );
58
-    }
59
-}
24
+// Images
25
+import logo from './src/images/logo@1x.png';
60 26
 
61 27
 const styles = StyleSheet.create({
62 28
     container: {
@@ -101,4 +67,54 @@ const styles = StyleSheet.create({
101 67
     }
102 68
 });
103 69
 
104
-AppRegistry.registerComponent('app', () => app);
70
+export default class FMS extends Component {
71
+    constructor(props) {
72
+        super(props);
73
+
74
+        this.state = {
75
+        };
76
+    }
77
+
78
+    submit = () => {
79
+
80
+    }
81
+
82
+    render() {
83
+        return (
84
+            <View style={styles.container}>
85
+                <Image
86
+                    source={logo}
87
+                />
88
+                <Text style={styles.companyName}>
89
+                    Future Message Service
90
+                </Text>
91
+                <View style={styles.main}>
92
+                    <InputGroup borderType="regular" style={styles.account}>
93
+                        <Input placeholder="Email"/>
94
+                    </InputGroup>
95
+                    <InputGroup borderType="regular" style={styles.password}>
96
+                        <Input placeholder="Password"/>
97
+                    </InputGroup>
98
+                    <Button transparent>
99
+                        <Text style={styles.signup}>
100
+                            Sign Up
101
+                        </Text>
102
+                    </Button>
103
+                    <Button block style={styles.login} onPress={this.submit}>
104
+                        Login !
105
+                    </Button>
106
+                </View>
107
+
108
+                <View style={styles.forgot}>
109
+                    <Button transparent>
110
+                        <Text style={styles.signup}>
111
+                            Forgot password ?
112
+                        </Text>
113
+                    </Button>
114
+                </View>
115
+            </View>
116
+        );
117
+    }
118
+}
119
+
120
+AppRegistry.registerComponent('FMS', () => FMS);

app/ios/app-tvOS/Info.plist → FMS/ios/FMS-tvOS/Info.plist


app/ios/appTests/Info.plist → FMS/ios/FMS-tvOSTests/Info.plist


+ 110 - 141
app/ios/FMS.xcodeproj/project.pbxproj

@@ -5,15 +5,13 @@
5 5
 	};
6 6
 	objectVersion = 46;
7 7
 	objects = {
8
-
9 8
 /* Begin PBXBuildFile section */
10 9
 		00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */; };
11 10
 		00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */; };
12 11
 		00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */; };
13 12
 		00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */; };
14 13
 		00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */; };
15
-		00E356F31AD99517003FC87E /* appTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* appTests.m */; };
16
-		0C555DF34D914822B18CCB97 /* Zocial.ttf in Resources */ = {isa = PBXBuildFile; fileRef = B1707FEEAC8940BF8FBD571D /* Zocial.ttf */; };
14
+		00E356F31AD99517003FC87E /* FMSTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* FMSTests.m */; };
17 15
 		133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 78C398B91ACF4ADC00677621 /* libRCTLinking.a */; };
18 16
 		139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */; };
19 17
 		139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */; };
@@ -23,8 +21,6 @@
23 21
 		13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
24 22
 		140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; };
25 23
 		146834051AC3E58100842450 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; };
26
-		1858965030EC4781BD9D7E9C /* Foundation.ttf in Resources */ = {isa = PBXBuildFile; fileRef = ABF721C06DD148F5838F2642 /* Foundation.ttf */; };
27
-		2A035C7CCA1B40098C8E01FA /* libRNVectorIcons.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 396A3FAE252548208A5258E5 /* libRNVectorIcons.a */; };
28 24
 		2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
29 25
 		2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
30 26
 		2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
@@ -36,17 +32,20 @@
36 32
 		2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */; };
37 33
 		2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */; };
38 34
 		2D02E4C91E0B4AEC006451C7 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3EA31DF850E9000B6D8A /* libReact.a */; };
39
-		2D85154BD35E43C3AB02739D /* MaterialIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = B64E2CBEDDB84D3D9543DB5A /* MaterialIcons.ttf */; };
40
-		2DCD954D1E0B4F2C00145EB5 /* appTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* appTests.m */; };
35
+		2DCD954D1E0B4F2C00145EB5 /* FMSTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* FMSTests.m */; };
41 36
 		5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */; };
42
-		7236550B37294C36953F46EA /* EvilIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 88683C3E13744B50A272DAF5 /* EvilIcons.ttf */; };
43 37
 		832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; };
44
-		84D34253F7164154928F5AF1 /* SimpleLineIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = EEBF9C8E73964AE9967EC919 /* SimpleLineIcons.ttf */; };
45
-		995555616EAF4F9B964B8565 /* Entypo.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 0065B684D509409481440052 /* Entypo.ttf */; };
46
-		C304FA8A1DFD47FEBF17FEC3 /* Octicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = A50AD99EF2DD4AC6A40A0F1D /* Octicons.ttf */; };
47
-		C32D11D7AC9E462F908E2C45 /* FontAwesome.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 99E5EA8A5FD84ACAA400DFD9 /* FontAwesome.ttf */; };
48
-		CBE220C0E9164ED29250C2EA /* MaterialCommunityIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = B077CFB4C9B3473F9949D452 /* MaterialCommunityIcons.ttf */; };
49
-		D4E2F669ACB347018A9B5824 /* Ionicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 57ACF8EB50674C7F8EA6E372 /* Ionicons.ttf */; };
38
+		A39F8211E4C4485BBC00B41D /* libRNVectorIcons.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 37621DA2EDB04C6781C4EC96 /* libRNVectorIcons.a */; };
39
+		C559B650121B4A39B9895DF3 /* Entypo.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 53942101428547BA9EC0E108 /* Entypo.ttf */; };
40
+		07A61B2E698D4CFABA5E1D5C /* EvilIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 8E5B586A2458410DB3CFE520 /* EvilIcons.ttf */; };
41
+		264C2927F48E418CB5424F08 /* FontAwesome.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 4666100E90E74CD9B3832339 /* FontAwesome.ttf */; };
42
+		98C835FFCDD34F33A6789E86 /* Foundation.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 6945341AC4A34B2A81B2DC8E /* Foundation.ttf */; };
43
+		EAD66C65A7324246BBFB9EA6 /* Ionicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 129BD33660E34B4F9B7445CA /* Ionicons.ttf */; };
44
+		C163EACB743544D1827C955C /* MaterialCommunityIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 940DD8DA6F03476B85C81B6D /* MaterialCommunityIcons.ttf */; };
45
+		0D311EF9C7034017AD7F523D /* MaterialIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F4186DD3AC194200B68A999E /* MaterialIcons.ttf */; };
46
+		9537B4A51A164740B966E31C /* Octicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 2BEA4CFE6B8F477E86C0803D /* Octicons.ttf */; };
47
+		32F7A39CF0044FE6BF2BC9D8 /* SimpleLineIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 07D74B6562D44DFF962B78A6 /* SimpleLineIcons.ttf */; };
48
+		7BEE04A2BA16484094E61CFE /* Zocial.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F1BF643026CC4D10A64ECF25 /* Zocial.ttf */; };
50 49
 /* End PBXBuildFile section */
51 50
 
52 51
 /* Begin PBXContainerItemProxy section */
@@ -90,7 +89,7 @@
90 89
 			containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
91 90
 			proxyType = 1;
92 91
 			remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
93
-			remoteInfo = app;
92
+			remoteInfo = FMS;
94 93
 		};
95 94
 		139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = {
96 95
 			isa = PBXContainerItemProxy;
@@ -118,7 +117,7 @@
118 117
 			containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
119 118
 			proxyType = 1;
120 119
 			remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7;
121
-			remoteInfo = "app-tvOS";
120
+			remoteInfo = "FMS-tvOS";
122 121
 		};
123 122
 		3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */ = {
124 123
 			isa = PBXContainerItemProxy;
@@ -239,17 +238,9 @@
239 238
 			remoteGlobalIDString = 58B5119B1A9E6C1200147676;
240 239
 			remoteInfo = RCTText;
241 240
 		};
242
-		D65919001E449838000B8553 /* PBXContainerItemProxy */ = {
243
-			isa = PBXContainerItemProxy;
244
-			containerPortal = BE840246130249EC9C52D343 /* RNVectorIcons.xcodeproj */;
245
-			proxyType = 2;
246
-			remoteGlobalIDString = 5DBEB1501B18CEA900B34395;
247
-			remoteInfo = RNVectorIcons;
248
-		};
249 241
 /* End PBXContainerItemProxy section */
250 242
 
251 243
 /* Begin PBXFileReference section */
252
-		0065B684D509409481440052 /* Entypo.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Entypo.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Entypo.ttf"; sourceTree = "<group>"; };
253 244
 		008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = "<group>"; };
254 245
 		00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = "<group>"; };
255 246
 		00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = "<group>"; };
@@ -258,33 +249,34 @@
258 249
 		00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = "<group>"; };
259 250
 		00E356EE1AD99517003FC87E /* FMSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = FMSTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
260 251
 		00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
261
-		00E356F21AD99517003FC87E /* appTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = appTests.m; sourceTree = "<group>"; };
252
+		00E356F21AD99517003FC87E /* FMSTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FMSTests.m; sourceTree = "<group>"; };
262 253
 		139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = "<group>"; };
263 254
 		139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = "<group>"; };
264 255
 		13B07F961A680F5B00A75B9A /* FMS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = FMS.app; sourceTree = BUILT_PRODUCTS_DIR; };
265
-		13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = app/AppDelegate.h; sourceTree = "<group>"; };
266
-		13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = app/AppDelegate.m; sourceTree = "<group>"; };
256
+		13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = FMS/AppDelegate.h; sourceTree = "<group>"; };
257
+		13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = FMS/AppDelegate.m; sourceTree = "<group>"; };
267 258
 		13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = "<group>"; };
268
-		13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = app/Images.xcassets; sourceTree = "<group>"; };
269
-		13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = app/Info.plist; sourceTree = "<group>"; };
270
-		13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = app/main.m; sourceTree = "<group>"; };
259
+		13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = FMS/Images.xcassets; sourceTree = "<group>"; };
260
+		13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = FMS/Info.plist; sourceTree = "<group>"; };
261
+		13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = FMS/main.m; sourceTree = "<group>"; };
271 262
 		146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = "<group>"; };
272 263
 		2D02E47B1E0B4A5D006451C7 /* FMS-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "FMS-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; };
273 264
 		2D02E4901E0B4A5D006451C7 /* FMS-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "FMS-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
274
-		396A3FAE252548208A5258E5 /* libRNVectorIcons.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNVectorIcons.a; sourceTree = "<group>"; };
275
-		57ACF8EB50674C7F8EA6E372 /* Ionicons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Ionicons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Ionicons.ttf"; sourceTree = "<group>"; };
276 265
 		5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = "<group>"; };
277 266
 		78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = "<group>"; };
278 267
 		832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = "<group>"; };
279
-		88683C3E13744B50A272DAF5 /* EvilIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = EvilIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/EvilIcons.ttf"; sourceTree = "<group>"; };
280
-		99E5EA8A5FD84ACAA400DFD9 /* FontAwesome.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = FontAwesome.ttf; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome.ttf"; sourceTree = "<group>"; };
281
-		A50AD99EF2DD4AC6A40A0F1D /* Octicons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Octicons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Octicons.ttf"; sourceTree = "<group>"; };
282
-		ABF721C06DD148F5838F2642 /* Foundation.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Foundation.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Foundation.ttf"; sourceTree = "<group>"; };
283
-		B077CFB4C9B3473F9949D452 /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = MaterialCommunityIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/MaterialCommunityIcons.ttf"; sourceTree = "<group>"; };
284
-		B1707FEEAC8940BF8FBD571D /* Zocial.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Zocial.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Zocial.ttf"; sourceTree = "<group>"; };
285
-		B64E2CBEDDB84D3D9543DB5A /* MaterialIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = MaterialIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/MaterialIcons.ttf"; sourceTree = "<group>"; };
286
-		BE840246130249EC9C52D343 /* RNVectorIcons.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RNVectorIcons.xcodeproj; path = "../node_modules/react-native-vector-icons/RNVectorIcons.xcodeproj"; sourceTree = "<group>"; };
287
-		EEBF9C8E73964AE9967EC919 /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = SimpleLineIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf"; sourceTree = "<group>"; };
268
+		886548D63538441BB8386A9B /* RNVectorIcons.xcodeproj */ = {isa = PBXFileReference; name = "RNVectorIcons.xcodeproj"; path = "../node_modules/react-native-vector-icons/RNVectorIcons.xcodeproj"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = wrapper.pb-project; explicitFileType = undefined; includeInIndex = 0; };
269
+		37621DA2EDB04C6781C4EC96 /* libRNVectorIcons.a */ = {isa = PBXFileReference; name = "libRNVectorIcons.a"; path = "libRNVectorIcons.a"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = archive.ar; explicitFileType = undefined; includeInIndex = 0; };
270
+		53942101428547BA9EC0E108 /* Entypo.ttf */ = {isa = PBXFileReference; name = "Entypo.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Entypo.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
271
+		8E5B586A2458410DB3CFE520 /* EvilIcons.ttf */ = {isa = PBXFileReference; name = "EvilIcons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/EvilIcons.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
272
+		4666100E90E74CD9B3832339 /* FontAwesome.ttf */ = {isa = PBXFileReference; name = "FontAwesome.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
273
+		6945341AC4A34B2A81B2DC8E /* Foundation.ttf */ = {isa = PBXFileReference; name = "Foundation.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Foundation.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
274
+		129BD33660E34B4F9B7445CA /* Ionicons.ttf */ = {isa = PBXFileReference; name = "Ionicons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Ionicons.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
275
+		940DD8DA6F03476B85C81B6D /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; name = "MaterialCommunityIcons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/MaterialCommunityIcons.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
276
+		F4186DD3AC194200B68A999E /* MaterialIcons.ttf */ = {isa = PBXFileReference; name = "MaterialIcons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/MaterialIcons.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
277
+		2BEA4CFE6B8F477E86C0803D /* Octicons.ttf */ = {isa = PBXFileReference; name = "Octicons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Octicons.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
278
+		07D74B6562D44DFF962B78A6 /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; name = "SimpleLineIcons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
279
+		F1BF643026CC4D10A64ECF25 /* Zocial.ttf */ = {isa = PBXFileReference; name = "Zocial.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Zocial.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
288 280
 /* End PBXFileReference section */
289 281
 
290 282
 /* Begin PBXFrameworksBuildPhase section */
@@ -311,7 +303,7 @@
311 303
 				832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */,
312 304
 				00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */,
313 305
 				139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */,
314
-				2A035C7CCA1B40098C8E01FA /* libRNVectorIcons.a in Frameworks */,
306
+				A39F8211E4C4485BBC00B41D /* libRNVectorIcons.a in Frameworks */,
315 307
 			);
316 308
 			runOnlyForDeploymentPostprocessing = 0;
317 309
 		};
@@ -382,13 +374,13 @@
382 374
 			name = Products;
383 375
 			sourceTree = "<group>";
384 376
 		};
385
-		00E356EF1AD99517003FC87E /* appTests */ = {
377
+		00E356EF1AD99517003FC87E /* FMSTests */ = {
386 378
 			isa = PBXGroup;
387 379
 			children = (
388
-				00E356F21AD99517003FC87E /* appTests.m */,
380
+				00E356F21AD99517003FC87E /* FMSTests.m */,
389 381
 				00E356F01AD99517003FC87E /* Supporting Files */,
390 382
 			);
391
-			path = appTests;
383
+			path = FMSTests;
392 384
 			sourceTree = "<group>";
393 385
 		};
394 386
 		00E356F01AD99517003FC87E /* Supporting Files */ = {
@@ -417,7 +409,7 @@
417 409
 			name = Products;
418 410
 			sourceTree = "<group>";
419 411
 		};
420
-		13B07FAE1A68108700A75B9A /* app */ = {
412
+		13B07FAE1A68108700A75B9A /* FMS */ = {
421 413
 			isa = PBXGroup;
422 414
 			children = (
423 415
 				008F07F21AC5B25A0029DE68 /* main.jsbundle */,
@@ -428,7 +420,7 @@
428 420
 				13B07FB11A68108700A75B9A /* LaunchScreen.xib */,
429 421
 				13B07FB71A68108700A75B9A /* main.m */,
430 422
 			);
431
-			name = app;
423
+			name = FMS;
432 424
 			sourceTree = "<group>";
433 425
 		};
434 426
 		146834001AC3E56700842450 /* Products */ = {
@@ -446,23 +438,6 @@
446 438
 			name = Products;
447 439
 			sourceTree = "<group>";
448 440
 		};
449
-		444F9892B0F34CAC9FA346BD /* Resources */ = {
450
-			isa = PBXGroup;
451
-			children = (
452
-				0065B684D509409481440052 /* Entypo.ttf */,
453
-				88683C3E13744B50A272DAF5 /* EvilIcons.ttf */,
454
-				99E5EA8A5FD84ACAA400DFD9 /* FontAwesome.ttf */,
455
-				ABF721C06DD148F5838F2642 /* Foundation.ttf */,
456
-				57ACF8EB50674C7F8EA6E372 /* Ionicons.ttf */,
457
-				B077CFB4C9B3473F9949D452 /* MaterialCommunityIcons.ttf */,
458
-				B64E2CBEDDB84D3D9543DB5A /* MaterialIcons.ttf */,
459
-				A50AD99EF2DD4AC6A40A0F1D /* Octicons.ttf */,
460
-				EEBF9C8E73964AE9967EC919 /* SimpleLineIcons.ttf */,
461
-				B1707FEEAC8940BF8FBD571D /* Zocial.ttf */,
462
-			);
463
-			name = Resources;
464
-			sourceTree = "<group>";
465
-		};
466 441
 		5E91572E1DD0AC6500FF2AA8 /* Products */ = {
467 442
 			isa = PBXGroup;
468 443
 			children = (
@@ -495,7 +470,7 @@
495 470
 				832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */,
496 471
 				00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */,
497 472
 				139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */,
498
-				BE840246130249EC9C52D343 /* RNVectorIcons.xcodeproj */,
473
+				886548D63538441BB8386A9B /* RNVectorIcons.xcodeproj */,
499 474
 			);
500 475
 			name = Libraries;
501 476
 			sourceTree = "<group>";
@@ -512,11 +487,11 @@
512 487
 		83CBB9F61A601CBA00E9B192 = {
513 488
 			isa = PBXGroup;
514 489
 			children = (
515
-				13B07FAE1A68108700A75B9A /* app */,
490
+				13B07FAE1A68108700A75B9A /* FMS */,
516 491
 				832341AE1AAA6A7D00B99B32 /* Libraries */,
517
-				00E356EF1AD99517003FC87E /* appTests */,
492
+				00E356EF1AD99517003FC87E /* FMSTests */,
518 493
 				83CBBA001A601CBA00E9B192 /* Products */,
519
-				444F9892B0F34CAC9FA346BD /* Resources */,
494
+				2B3BFBC53A124732B749D63B /* Resources */,
520 495
 			);
521 496
 			indentWidth = 2;
522 497
 			sourceTree = "<group>";
@@ -533,12 +508,22 @@
533 508
 			name = Products;
534 509
 			sourceTree = "<group>";
535 510
 		};
536
-		D65918E41E449835000B8553 /* Products */ = {
511
+		2B3BFBC53A124732B749D63B /* Resources */ = {
537 512
 			isa = PBXGroup;
538 513
 			children = (
539
-				D65919011E449838000B8553 /* libRNVectorIcons.a */,
514
+				53942101428547BA9EC0E108 /* Entypo.ttf */,
515
+				8E5B586A2458410DB3CFE520 /* EvilIcons.ttf */,
516
+				4666100E90E74CD9B3832339 /* FontAwesome.ttf */,
517
+				6945341AC4A34B2A81B2DC8E /* Foundation.ttf */,
518
+				129BD33660E34B4F9B7445CA /* Ionicons.ttf */,
519
+				940DD8DA6F03476B85C81B6D /* MaterialCommunityIcons.ttf */,
520
+				F4186DD3AC194200B68A999E /* MaterialIcons.ttf */,
521
+				2BEA4CFE6B8F477E86C0803D /* Octicons.ttf */,
522
+				07D74B6562D44DFF962B78A6 /* SimpleLineIcons.ttf */,
523
+				F1BF643026CC4D10A64ECF25 /* Zocial.ttf */,
540 524
 			);
541
-			name = Products;
525
+			name = Resources;
526
+			path = "";
542 527
 			sourceTree = "<group>";
543 528
 		};
544 529
 /* End PBXGroup section */
@@ -558,7 +543,7 @@
558 543
 				00E356F51AD99517003FC87E /* PBXTargetDependency */,
559 544
 			);
560 545
 			name = FMSTests;
561
-			productName = appTests;
546
+			productName = FMSTests;
562 547
 			productReference = 00E356EE1AD99517003FC87E /* FMSTests.xctest */;
563 548
 			productType = "com.apple.product-type.bundle.unit-test";
564 549
 		};
@@ -594,7 +579,7 @@
594 579
 			dependencies = (
595 580
 			);
596 581
 			name = "FMS-tvOS";
597
-			productName = "app-tvOS";
582
+			productName = "FMS-tvOS";
598 583
 			productReference = 2D02E47B1E0B4A5D006451C7 /* FMS-tvOS.app */;
599 584
 			productType = "com.apple.product-type.application";
600 585
 		};
@@ -612,7 +597,7 @@
612 597
 				2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */,
613 598
 			);
614 599
 			name = "FMS-tvOSTests";
615
-			productName = "app-tvOSTests";
600
+			productName = "FMS-tvOSTests";
616 601
 			productReference = 2D02E4901E0B4A5D006451C7 /* FMS-tvOSTests.xctest */;
617 602
 			productType = "com.apple.product-type.bundle.unit-test";
618 603
 		};
@@ -629,9 +614,6 @@
629 614
 						CreatedOnToolsVersion = 6.2;
630 615
 						TestTargetID = 13B07F861A680F5B00A75B9A;
631 616
 					};
632
-					13B07F861A680F5B00A75B9A = {
633
-						DevelopmentTeam = GNEXKQ27HT;
634
-					};
635 617
 					2D02E47A1E0B4A5D006451C7 = {
636 618
 						CreatedOnToolsVersion = 8.2.1;
637 619
 						ProvisioningStyle = Automatic;
@@ -699,10 +681,6 @@
699 681
 					ProductGroup = 146834001AC3E56700842450 /* Products */;
700 682
 					ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */;
701 683
 				},
702
-				{
703
-					ProductGroup = D65918E41E449835000B8553 /* Products */;
704
-					ProjectRef = BE840246130249EC9C52D343 /* RNVectorIcons.xcodeproj */;
705
-				},
706 684
 			);
707 685
 			projectRoot = "";
708 686
 			targets = (
@@ -890,13 +868,6 @@
890 868
 			remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */;
891 869
 			sourceTree = BUILT_PRODUCTS_DIR;
892 870
 		};
893
-		D65919011E449838000B8553 /* libRNVectorIcons.a */ = {
894
-			isa = PBXReferenceProxy;
895
-			fileType = archive.ar;
896
-			path = libRNVectorIcons.a;
897
-			remoteRef = D65919001E449838000B8553 /* PBXContainerItemProxy */;
898
-			sourceTree = BUILT_PRODUCTS_DIR;
899
-		};
900 871
 /* End PBXReferenceProxy section */
901 872
 
902 873
 /* Begin PBXResourcesBuildPhase section */
@@ -913,16 +884,16 @@
913 884
 			files = (
914 885
 				13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
915 886
 				13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */,
916
-				995555616EAF4F9B964B8565 /* Entypo.ttf in Resources */,
917
-				7236550B37294C36953F46EA /* EvilIcons.ttf in Resources */,
918
-				C32D11D7AC9E462F908E2C45 /* FontAwesome.ttf in Resources */,
919
-				1858965030EC4781BD9D7E9C /* Foundation.ttf in Resources */,
920
-				D4E2F669ACB347018A9B5824 /* Ionicons.ttf in Resources */,
921
-				CBE220C0E9164ED29250C2EA /* MaterialCommunityIcons.ttf in Resources */,
922
-				2D85154BD35E43C3AB02739D /* MaterialIcons.ttf in Resources */,
923
-				C304FA8A1DFD47FEBF17FEC3 /* Octicons.ttf in Resources */,
924
-				84D34253F7164154928F5AF1 /* SimpleLineIcons.ttf in Resources */,
925
-				0C555DF34D914822B18CCB97 /* Zocial.ttf in Resources */,
887
+				C559B650121B4A39B9895DF3 /* Entypo.ttf in Resources */,
888
+				07A61B2E698D4CFABA5E1D5C /* EvilIcons.ttf in Resources */,
889
+				264C2927F48E418CB5424F08 /* FontAwesome.ttf in Resources */,
890
+				98C835FFCDD34F33A6789E86 /* Foundation.ttf in Resources */,
891
+				EAD66C65A7324246BBFB9EA6 /* Ionicons.ttf in Resources */,
892
+				C163EACB743544D1827C955C /* MaterialCommunityIcons.ttf in Resources */,
893
+				0D311EF9C7034017AD7F523D /* MaterialIcons.ttf in Resources */,
894
+				9537B4A51A164740B966E31C /* Octicons.ttf in Resources */,
895
+				32F7A39CF0044FE6BF2BC9D8 /* SimpleLineIcons.ttf in Resources */,
896
+				7BEE04A2BA16484094E61CFE /* Zocial.ttf in Resources */,
926 897
 			);
927 898
 			runOnlyForDeploymentPostprocessing = 0;
928 899
 		};
@@ -979,7 +950,7 @@
979 950
 			isa = PBXSourcesBuildPhase;
980 951
 			buildActionMask = 2147483647;
981 952
 			files = (
982
-				00E356F31AD99517003FC87E /* appTests.m in Sources */,
953
+				00E356F31AD99517003FC87E /* FMSTests.m in Sources */,
983 954
 			);
984 955
 			runOnlyForDeploymentPostprocessing = 0;
985 956
 		};
@@ -1005,7 +976,7 @@
1005 976
 			isa = PBXSourcesBuildPhase;
1006 977
 			buildActionMask = 2147483647;
1007 978
 			files = (
1008
-				2DCD954D1E0B4F2C00145EB5 /* appTests.m in Sources */,
979
+				2DCD954D1E0B4F2C00145EB5 /* FMSTests.m in Sources */,
1009 980
 			);
1010 981
 			runOnlyForDeploymentPostprocessing = 0;
1011 982
 		};
@@ -1031,7 +1002,7 @@
1031 1002
 				13B07FB21A68108700A75B9A /* Base */,
1032 1003
 			);
1033 1004
 			name = LaunchScreen.xib;
1034
-			path = app;
1005
+			path = FMS;
1035 1006
 			sourceTree = "<group>";
1036 1007
 		};
1037 1008
 /* End PBXVariantGroup section */
@@ -1045,19 +1016,19 @@
1045 1016
 					"DEBUG=1",
1046 1017
 					"$(inherited)",
1047 1018
 				);
1048
-				INFOPLIST_FILE = appTests/Info.plist;
1019
+				INFOPLIST_FILE = FMSTests/Info.plist;
1049 1020
 				IPHONEOS_DEPLOYMENT_TARGET = 8.0;
1050 1021
 				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1051
-				LIBRARY_SEARCH_PATHS = (
1052
-					"$(inherited)",
1053
-					"\"$(SRCROOT)/$(TARGET_NAME)\"",
1054
-				);
1055 1022
 				OTHER_LDFLAGS = (
1056 1023
 					"-ObjC",
1057 1024
 					"-lc++",
1058 1025
 				);
1059 1026
 				PRODUCT_NAME = "$(TARGET_NAME)";
1060
-				TEST_HOST = "$(BUILT_PRODUCTS_DIR)/FMS.FMS/FMS";
1027
+				TEST_HOST = "$(BUILT_PRODUCTS_DIR)/FMS.app/FMS";
1028
+				LIBRARY_SEARCH_PATHS = (
1029
+					"$(inherited)",
1030
+					"\"$(SRCROOT)/$(TARGET_NAME)\"",
1031
+				);
1061 1032
 			};
1062 1033
 			name = Debug;
1063 1034
 		};
@@ -1066,19 +1037,19 @@
1066 1037
 			buildSettings = {
1067 1038
 				BUNDLE_LOADER = "$(TEST_HOST)";
1068 1039
 				COPY_PHASE_STRIP = NO;
1069
-				INFOPLIST_FILE = appTests/Info.plist;
1040
+				INFOPLIST_FILE = FMSTests/Info.plist;
1070 1041
 				IPHONEOS_DEPLOYMENT_TARGET = 8.0;
1071 1042
 				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1072
-				LIBRARY_SEARCH_PATHS = (
1073
-					"$(inherited)",
1074
-					"\"$(SRCROOT)/$(TARGET_NAME)\"",
1075
-				);
1076 1043
 				OTHER_LDFLAGS = (
1077 1044
 					"-ObjC",
1078 1045
 					"-lc++",
1079 1046
 				);
1080 1047
 				PRODUCT_NAME = "$(TARGET_NAME)";
1081
-				TEST_HOST = "$(BUILT_PRODUCTS_DIR)/FMS.FMS/FMS";
1048
+				TEST_HOST = "$(BUILT_PRODUCTS_DIR)/FMS.app/FMS";
1049
+				LIBRARY_SEARCH_PATHS = (
1050
+					"$(inherited)",
1051
+					"\"$(SRCROOT)/$(TARGET_NAME)\"",
1052
+				);
1082 1053
 			};
1083 1054
 			name = Release;
1084 1055
 		};
@@ -1088,8 +1059,7 @@
1088 1059
 				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
1089 1060
 				CURRENT_PROJECT_VERSION = 1;
1090 1061
 				DEAD_CODE_STRIPPING = NO;
1091
-				DEVELOPMENT_TEAM = GNEXKQ27HT;
1092
-				INFOPLIST_FILE = app/Info.plist;
1062
+				INFOPLIST_FILE = FMS/Info.plist;
1093 1063
 				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
1094 1064
 				OTHER_LDFLAGS = (
1095 1065
 					"$(inherited)",
@@ -1106,8 +1076,7 @@
1106 1076
 			buildSettings = {
1107 1077
 				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
1108 1078
 				CURRENT_PROJECT_VERSION = 1;
1109
-				DEVELOPMENT_TEAM = GNEXKQ27HT;
1110
-				INFOPLIST_FILE = app/Info.plist;
1079
+				INFOPLIST_FILE = FMS/Info.plist;
1111 1080
 				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
1112 1081
 				OTHER_LDFLAGS = (
1113 1082
 					"$(inherited)",
@@ -1131,21 +1100,21 @@
1131 1100
 				DEBUG_INFORMATION_FORMAT = dwarf;
1132 1101
 				ENABLE_TESTABILITY = YES;
1133 1102
 				GCC_NO_COMMON_BLOCKS = YES;
1134
-				INFOPLIST_FILE = "app-tvOS/Info.plist";
1103
+				INFOPLIST_FILE = "FMS-tvOS/Info.plist";
1135 1104
 				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
1136
-				LIBRARY_SEARCH_PATHS = (
1137
-					"$(inherited)",
1138
-					"\"$(SRCROOT)/$(TARGET_NAME)\"",
1139
-				);
1140 1105
 				OTHER_LDFLAGS = (
1141 1106
 					"-ObjC",
1142 1107
 					"-lc++",
1143 1108
 				);
1144
-				PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.app-tvOS";
1109
+				PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.FMS-tvOS";
1145 1110
 				PRODUCT_NAME = "$(TARGET_NAME)";
1146 1111
 				SDKROOT = appletvos;
1147 1112
 				TARGETED_DEVICE_FAMILY = 3;
1148 1113
 				TVOS_DEPLOYMENT_TARGET = 9.2;
1114
+				LIBRARY_SEARCH_PATHS = (
1115
+					"$(inherited)",
1116
+					"\"$(SRCROOT)/$(TARGET_NAME)\"",
1117
+				);
1149 1118
 			};
1150 1119
 			name = Debug;
1151 1120
 		};
@@ -1161,21 +1130,21 @@
1161 1130
 				COPY_PHASE_STRIP = NO;
1162 1131
 				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
1163 1132
 				GCC_NO_COMMON_BLOCKS = YES;
1164
-				INFOPLIST_FILE = "app-tvOS/Info.plist";
1133
+				INFOPLIST_FILE = "FMS-tvOS/Info.plist";
1165 1134
 				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
1166
-				LIBRARY_SEARCH_PATHS = (
1167
-					"$(inherited)",
1168
-					"\"$(SRCROOT)/$(TARGET_NAME)\"",
1169
-				);
1170 1135
 				OTHER_LDFLAGS = (
1171 1136
 					"-ObjC",
1172 1137
 					"-lc++",
1173 1138
 				);
1174
-				PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.app-tvOS";
1139
+				PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.FMS-tvOS";
1175 1140
 				PRODUCT_NAME = "$(TARGET_NAME)";
1176 1141
 				SDKROOT = appletvos;
1177 1142
 				TARGETED_DEVICE_FAMILY = 3;
1178 1143
 				TVOS_DEPLOYMENT_TARGET = 9.2;
1144
+				LIBRARY_SEARCH_PATHS = (
1145
+					"$(inherited)",
1146
+					"\"$(SRCROOT)/$(TARGET_NAME)\"",
1147
+				);
1179 1148
 			};
1180 1149
 			name = Release;
1181 1150
 		};
@@ -1190,17 +1159,17 @@
1190 1159
 				DEBUG_INFORMATION_FORMAT = dwarf;
1191 1160
 				ENABLE_TESTABILITY = YES;
1192 1161
 				GCC_NO_COMMON_BLOCKS = YES;
1193
-				INFOPLIST_FILE = "app-tvOSTests/Info.plist";
1162
+				INFOPLIST_FILE = "FMS-tvOSTests/Info.plist";
1194 1163
 				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1164
+				PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.FMS-tvOSTests";
1165
+				PRODUCT_NAME = "$(TARGET_NAME)";
1166
+				SDKROOT = appletvos;
1167
+				TEST_HOST = "$(BUILT_PRODUCTS_DIR)/FMS-tvOS.app/FMS-tvOS";
1168
+				TVOS_DEPLOYMENT_TARGET = 10.1;
1195 1169
 				LIBRARY_SEARCH_PATHS = (
1196 1170
 					"$(inherited)",
1197 1171
 					"\"$(SRCROOT)/$(TARGET_NAME)\"",
1198 1172
 				);
1199
-				PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.app-tvOSTests";
1200
-				PRODUCT_NAME = "$(TARGET_NAME)";
1201
-				SDKROOT = appletvos;
1202
-				TEST_HOST = "$(BUILT_PRODUCTS_DIR)/FMS-tvOS.FMS/FMS-tvOS";
1203
-				TVOS_DEPLOYMENT_TARGET = 10.1;
1204 1173
 			};
1205 1174
 			name = Debug;
1206 1175
 		};
@@ -1215,17 +1184,17 @@
1215 1184
 				COPY_PHASE_STRIP = NO;
1216 1185
 				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
1217 1186
 				GCC_NO_COMMON_BLOCKS = YES;
1218
-				INFOPLIST_FILE = "app-tvOSTests/Info.plist";
1187
+				INFOPLIST_FILE = "FMS-tvOSTests/Info.plist";
1219 1188
 				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1189
+				PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.FMS-tvOSTests";
1190
+				PRODUCT_NAME = "$(TARGET_NAME)";
1191
+				SDKROOT = appletvos;
1192
+				TEST_HOST = "$(BUILT_PRODUCTS_DIR)/FMS-tvOS.app/FMS-tvOS";
1193
+				TVOS_DEPLOYMENT_TARGET = 10.1;
1220 1194
 				LIBRARY_SEARCH_PATHS = (
1221 1195
 					"$(inherited)",
1222 1196
 					"\"$(SRCROOT)/$(TARGET_NAME)\"",
1223 1197
 				);
1224
-				PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.app-tvOSTests";
1225
-				PRODUCT_NAME = "$(TARGET_NAME)";
1226
-				SDKROOT = appletvos;
1227
-				TEST_HOST = "$(BUILT_PRODUCTS_DIR)/FMS-tvOS.FMS/FMS-tvOS";
1228
-				TVOS_DEPLOYMENT_TARGET = 10.1;
1229 1198
 			};
1230 1199
 			name = Release;
1231 1200
 		};

app/ios/FMS.xcodeproj/xcshareddata/xcschemes/app-tvOS.xcscheme → FMS/ios/FMS.xcodeproj/xcshareddata/xcschemes/FMS-tvOS.xcscheme


+ 4 - 4
app/ios/FMS.xcodeproj/xcshareddata/xcschemes/app.xcscheme

@@ -29,7 +29,7 @@
29 29
             <BuildableReference
30 30
                BuildableIdentifier = "primary"
31 31
                BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
32
-               BuildableName = "app.app"
32
+               BuildableName = "FMS.app"
33 33
                BlueprintName = "FMS"
34 34
                ReferencedContainer = "container:FMS.xcodeproj">
35 35
             </BuildableReference>
@@ -71,7 +71,7 @@
71 71
          <BuildableReference
72 72
             BuildableIdentifier = "primary"
73 73
             BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
74
-            BuildableName = "app.app"
74
+            BuildableName = "FMS.app"
75 75
             BlueprintName = "FMS"
76 76
             ReferencedContainer = "container:FMS.xcodeproj">
77 77
          </BuildableReference>
@@ -94,7 +94,7 @@
94 94
          <BuildableReference
95 95
             BuildableIdentifier = "primary"
96 96
             BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
97
-            BuildableName = "app.app"
97
+            BuildableName = "FMS.app"
98 98
             BlueprintName = "FMS"
99 99
             ReferencedContainer = "container:FMS.xcodeproj">
100 100
          </BuildableReference>
@@ -113,7 +113,7 @@
113 113
          <BuildableReference
114 114
             BuildableIdentifier = "primary"
115 115
             BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
116
-            BuildableName = "app.app"
116
+            BuildableName = "FMS.app"
117 117
             BlueprintName = "FMS"
118 118
             ReferencedContainer = "container:FMS.xcodeproj">
119 119
          </BuildableReference>

app/ios/app/AppDelegate.h → FMS/ios/FMS/AppDelegate.h


+ 1 - 1
app/ios/app/AppDelegate.m

@@ -21,7 +21,7 @@
21 21
   jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index.ios" fallbackResource:nil];
22 22
 
23 23
   RCTRootView *rootView = [[RCTRootView alloc] initWithBundleURL:jsCodeLocation
24
-                                                      moduleName:@"app"
24
+                                                      moduleName:@"FMS"
25 25
                                                initialProperties:nil
26 26
                                                    launchOptions:launchOptions];
27 27
   rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1];

+ 4 - 4
app/ios/app/Base.lproj/LaunchScreen.xib

@@ -1,8 +1,8 @@
1 1
 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
-<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="11762" systemVersion="15G1108" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES" colorMatched="NO">
2
+<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="7702" systemVersion="14D136" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES">
3 3
     <dependencies>
4
-        <development version="7000" identifier="xcode"/>
5
-        <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="11757"/>
4
+        <deployment identifier="iOS"/>
5
+        <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="7701"/>
6 6
         <capability name="Constraints with non-1.0 multipliers" minToolsVersion="5.1"/>
7 7
     </dependencies>
8 8
     <objects>
@@ -25,7 +25,7 @@
25 25
                     <nil key="highlightedColor"/>
26 26
                 </label>
27 27
             </subviews>
28
-            <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
28
+            <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="calibratedWhite"/>
29 29
             <constraints>
30 30
                 <constraint firstItem="kId-c2-rCX" firstAttribute="centerY" secondItem="iN0-l3-epB" secondAttribute="bottom" multiplier="1/3" constant="1" id="5cJ-9S-tgC"/>
31 31
                 <constraint firstAttribute="centerX" secondItem="kId-c2-rCX" secondAttribute="centerX" id="Koa-jz-hwk"/>

app/ios/app/Images.xcassets/AppIcon.appiconset/Contents.json → FMS/ios/FMS/Images.xcassets/AppIcon.appiconset/Contents.json


+ 66 - 0
FMS/ios/FMS/Info.plist

@@ -0,0 +1,66 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+<plist version="1.0">
4
+  <dict>
5
+    <key>CFBundleDevelopmentRegion</key>
6
+    <string>en</string>
7
+    <key>CFBundleExecutable</key>
8
+    <string>$(EXECUTABLE_NAME)</string>
9
+    <key>CFBundleIdentifier</key>
10
+    <string>org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)</string>
11
+    <key>CFBundleInfoDictionaryVersion</key>
12
+    <string>6.0</string>
13
+    <key>CFBundleName</key>
14
+    <string>$(PRODUCT_NAME)</string>
15
+    <key>CFBundlePackageType</key>
16
+    <string>APPL</string>
17
+    <key>CFBundleShortVersionString</key>
18
+    <string>1.0</string>
19
+    <key>CFBundleSignature</key>
20
+    <string>????</string>
21
+    <key>CFBundleVersion</key>
22
+    <string>1</string>
23
+    <key>LSRequiresIPhoneOS</key>
24
+    <true/>
25
+    <key>UILaunchStoryboardName</key>
26
+    <string>LaunchScreen</string>
27
+    <key>UIRequiredDeviceCapabilities</key>
28
+    <array>
29
+      <string>armv7</string>
30
+    </array>
31
+    <key>UISupportedInterfaceOrientations</key>
32
+    <array>
33
+      <string>UIInterfaceOrientationPortrait</string>
34
+      <string>UIInterfaceOrientationLandscapeLeft</string>
35
+      <string>UIInterfaceOrientationLandscapeRight</string>
36
+    </array>
37
+    <key>UIViewControllerBasedStatusBarAppearance</key>
38
+    <false/>
39
+    <key>NSLocationWhenInUseUsageDescription</key>
40
+    <string/>
41
+    <key>NSAppTransportSecurity</key>
42
+    <dict>
43
+      <key>NSExceptionDomains</key>
44
+      <dict>
45
+        <key>localhost</key>
46
+        <dict>
47
+          <key>NSExceptionAllowsInsecureHTTPLoads</key>
48
+          <true/>
49
+        </dict>
50
+      </dict>
51
+    </dict>
52
+    <key>UIAppFonts</key>
53
+    <array>
54
+      <string>Entypo.ttf</string>
55
+      <string>EvilIcons.ttf</string>
56
+      <string>FontAwesome.ttf</string>
57
+      <string>Foundation.ttf</string>
58
+      <string>Ionicons.ttf</string>
59
+      <string>MaterialCommunityIcons.ttf</string>
60
+      <string>MaterialIcons.ttf</string>
61
+      <string>Octicons.ttf</string>
62
+      <string>SimpleLineIcons.ttf</string>
63
+      <string>Zocial.ttf</string>
64
+    </array>
65
+  </dict>
66
+</plist>

app/ios/app/main.m → FMS/ios/FMS/main.m


+ 2 - 2
app/ios/appTests/appTests.m

@@ -16,11 +16,11 @@
16 16
 #define TIMEOUT_SECONDS 600
17 17
 #define TEXT_TO_LOOK_FOR @"Welcome to React Native!"
18 18
 
19
-@interface appTests : XCTestCase
19
+@interface FMSTests : XCTestCase
20 20
 
21 21
 @end
22 22
 
23
-@implementation appTests
23
+@implementation FMSTests
24 24
 
25 25
 - (BOOL)findSubviewInView:(UIView *)view matching:(BOOL(^)(UIView *view))test
26 26
 {

app/ios/app-tvOSTests/Info.plist → FMS/ios/FMSTests/Info.plist


+ 1 - 1
app/package.json

@@ -1,5 +1,5 @@
1 1
 {
2
-  "name": "app",
2
+  "name": "FMS",
3 3
   "version": "0.0.1",
4 4
   "private": true,
5 5
   "scripts": {

app/images/logo@1x.png → FMS/src/images/logo@1x.png


app/images/logo@2x.png → FMS/src/images/logo@2x.png


app/images/logo@3x.png → FMS/src/images/logo@3x.png


+ 0 - 104
app/index.android.js

@@ -1,104 +0,0 @@
1
-/**
2
-* Sample React Native App
3
-* https://github.com/facebook/react-native
4
-* @flow
5
-*/
6
-
7
-import React, { Component } from 'react';
8
-import {
9
-    AppRegistry,
10
-    StyleSheet,
11
-    Text,
12
-    View,
13
-    Image,
14
-    TextInput
15
-} from 'react-native';
16
-import {
17
-    InputGroup,
18
-    Input,
19
-    Button
20
-} from 'native-base';
21
-
22
-export default class app extends Component {
23
-    render() {
24
-        return (
25
-            <View style={styles.container}>
26
-                <Image
27
-                    source={require('./images/logo@1x.png')}
28
-                />
29
-                <Text style={styles.companyName}>
30
-                    Future Message Service
31
-                </Text>
32
-                <View style={styles.main}>
33
-                    <InputGroup borderType="regular" style={styles.account}>
34
-                        <Input placeholder="Email"/>
35
-                    </InputGroup>
36
-                    <InputGroup borderType="regular" style={styles.password}>
37
-                        <Input placeholder="Password"/>
38
-                    </InputGroup>
39
-                    <Button transparent>
40
-                        <Text style={styles.signup}>
41
-                            Sign Up
42
-                        </Text>
43
-                    </Button>
44
-                    <Button block style={styles.login}>
45
-                        Login !
46
-                    </Button>
47
-                </View>
48
-
49
-                <View style={styles.forgot}>
50
-                    <Button transparent>
51
-                        <Text style={styles.signup}>
52
-                            Forgot password ?
53
-                        </Text>
54
-                    </Button>
55
-                </View>
56
-            </View>
57
-        );
58
-    }
59
-}
60
-
61
-const styles = StyleSheet.create({
62
-    container: {
63
-        flex: 1,
64
-        justifyContent: 'center',
65
-        alignItems: 'center',
66
-        backgroundColor: '#FFFFFF',
67
-    },
68
-    companyName: {
69
-        fontSize: 20,
70
-        textAlign: 'center',
71
-        margin: 10,
72
-    },
73
-    main: {
74
-        marginTop: 40,
75
-        width: 250
76
-    },
77
-    account: {
78
-        borderBottomColor: 'transparent',
79
-        borderTopLeftRadius: 4,
80
-        borderTopRightRadius: 4
81
-    },
82
-    password: {
83
-        borderBottomLeftRadius: 4,
84
-        borderBottomRightRadius: 4
85
-    },
86
-    signup: {
87
-        fontSize: 14,
88
-        textAlign: 'left',
89
-        color: '#2987CD'
90
-    },
91
-    login: {
92
-        marginTop: 25,
93
-        backgroundColor: '#2987CD'
94
-    },
95
-    forgot: {
96
-        position: 'absolute',
97
-        left: 10,
98
-        right: 0,
99
-        bottom: 10,
100
-        flexDirection:'row'
101
-    }
102
-});
103
-
104
-AppRegistry.registerComponent('app', () => app);

+ 0 - 68
app/ios/app/Info.plist

@@ -1,68 +0,0 @@
1
-<?xml version="1.0" encoding="UTF-8"?>
2
-<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
-<plist version="1.0">
4
-<dict>
5
-	<key>CFBundleDevelopmentRegion</key>
6
-	<string>en</string>
7
-	<key>CFBundleDisplayName</key>
8
-	<string>FMS</string>
9
-	<key>CFBundleExecutable</key>
10
-	<string>$(EXECUTABLE_NAME)</string>
11
-	<key>CFBundleIdentifier</key>
12
-	<string>org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)</string>
13
-	<key>CFBundleInfoDictionaryVersion</key>
14
-	<string>6.0</string>
15
-	<key>CFBundleName</key>
16
-	<string>$(PRODUCT_NAME)</string>
17
-	<key>CFBundlePackageType</key>
18
-	<string>APPL</string>
19
-	<key>CFBundleShortVersionString</key>
20
-	<string>1.0</string>
21
-	<key>CFBundleSignature</key>
22
-	<string>????</string>
23
-	<key>CFBundleVersion</key>
24
-	<string>1</string>
25
-	<key>LSRequiresIPhoneOS</key>
26
-	<true/>
27
-	<key>NSAppTransportSecurity</key>
28
-	<dict>
29
-		<key>NSExceptionDomains</key>
30
-		<dict>
31
-			<key>localhost</key>
32
-			<dict>
33
-				<key>NSExceptionAllowsInsecureHTTPLoads</key>
34
-				<true/>
35
-			</dict>
36
-		</dict>
37
-	</dict>
38
-	<key>NSLocationWhenInUseUsageDescription</key>
39
-	<string></string>
40
-	<key>UIAppFonts</key>
41
-	<array>
42
-		<string>Entypo.ttf</string>
43
-		<string>EvilIcons.ttf</string>
44
-		<string>FontAwesome.ttf</string>
45
-		<string>Foundation.ttf</string>
46
-		<string>Ionicons.ttf</string>
47
-		<string>MaterialCommunityIcons.ttf</string>
48
-		<string>MaterialIcons.ttf</string>
49
-		<string>Octicons.ttf</string>
50
-		<string>SimpleLineIcons.ttf</string>
51
-		<string>Zocial.ttf</string>
52
-	</array>
53
-	<key>UILaunchStoryboardName</key>
54
-	<string>LaunchScreen</string>
55
-	<key>UIRequiredDeviceCapabilities</key>
56
-	<array>
57
-		<string>armv7</string>
58
-	</array>
59
-	<key>UISupportedInterfaceOrientations</key>
60
-	<array>
61
-		<string>UIInterfaceOrientationPortrait</string>
62
-		<string>UIInterfaceOrientationLandscapeLeft</string>
63
-		<string>UIInterfaceOrientationLandscapeRight</string>
64
-	</array>
65
-	<key>UIViewControllerBasedStatusBarAppearance</key>
66
-	<false/>
67
-</dict>
68
-</plist>