자유해결사 vor 6 Jahren
Ursprung
Commit
c5bc0c751c

+ 2 - 2
android/app/BUCK

@@ -35,12 +35,12 @@ android_library(
 
 android_build_config(
     name = "build_config",
-    package = "com.emptyapp",
+    package = "org.seonsujoa.emptyapp",
 )
 
 android_resource(
     name = "res",
-    package = "com.emptyapp",
+    package = "org.seonsujoa.emptyapp",
     res = "src/main/res",
 )
 

+ 1 - 1
android/app/build.gradle

@@ -128,7 +128,7 @@ android {
     }
 
     defaultConfig {
-        applicationId "com.emptyapp"
+        applicationId "org.seonsujoa.emptyapp"
         minSdkVersion rootProject.ext.minSdkVersion
         targetSdkVersion rootProject.ext.targetSdkVersion
         versionCode 1

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

@@ -1,5 +1,5 @@
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
-  package="com.emptyapp">
+  package="org.seonsujoa.emptyapp">
 
     <uses-permission android:name="android.permission.INTERNET" />
 

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

@@ -1,4 +1,4 @@
-package com.emptyapp;
+package org.seonsujoa.emptyapp;
 
 import com.facebook.react.ReactActivity;
 import com.facebook.react.ReactActivityDelegate;
@@ -12,7 +12,7 @@ public class MainActivity extends ReactActivity {
      */
     @Override
     protected String getMainComponentName() {
-        return "emptyapp";
+        return "emptyApp";
     }
 
     @Override

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

@@ -1,4 +1,4 @@
-package com.emptyapp;
+package org.seonsujoa.emptyapp;
 
 import android.app.Application;
 import android.util.Log;

+ 1 - 1
android/app/src/main/res/values/strings.xml

@@ -1,3 +1,3 @@
 <resources>
-    <string name="app_name">emptyapp</string>
+    <string name="app_name">emptyApp</string>
 </resources>

+ 1 - 1
android/settings.gradle

@@ -1,4 +1,4 @@
-rootProject.name = 'emptyapp'
+rootProject.name = 'emptyApp'
 include ':react-native-vector-icons'
 project(':react-native-vector-icons').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-vector-icons/android')
 include ':react-native-keep-awake'

+ 2 - 2
app.json

@@ -1,4 +1,4 @@
 {
-  "name": "emptyapp",
-  "displayName": "emptyapp"
+  "name": "emptyApp",
+  "displayName": "emptyApp"
 }

+ 6 - 6
ios/Podfile

@@ -1,8 +1,8 @@
 platform :ios, '9.0'
 require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
 
-target 'emptyapp' do
-  # Pods for emptyapp
+target 'emptyApp' do
+  # Pods for emptyApp
   pod 'React', :path => '../node_modules/react-native/'
   pod 'React-Core', :path => '../node_modules/react-native/React'
   pod 'React-DevSupport', :path => '../node_modules/react-native/React'
@@ -32,7 +32,7 @@ target 'emptyapp' do
 
   pod 'RNVectorIcons', :path => '../node_modules/react-native-vector-icons'
 
-  target 'emptyappTests' do
+  target 'emptyAppTests' do
     inherit! :search_paths
     # Pods for testing
   end
@@ -40,10 +40,10 @@ target 'emptyapp' do
   use_native_modules!
 end
 
-target 'emptyapp-tvOS' do
-  # Pods for emptyapp-tvOS
+target 'emptyApp-tvOS' do
+  # Pods for emptyApp-tvOS
 
-  target 'emptyapp-tvOSTests' do
+  target 'emptyApp-tvOSTests' do
     inherit! :search_paths
     # Pods for testing
   end

ios/emptyapp-tvOS/Info.plist → ios/emptyApp-tvOS/Info.plist


ios/emptyapp-tvOSTests/Info.plist → ios/emptyApp-tvOSTests/Info.plist


+ 124 - 124
ios/emptyapp.xcodeproj/project.pbxproj

@@ -7,7 +7,7 @@
 	objects = {
 
 /* Begin PBXBuildFile section */
-		00E356F31AD99517003FC87E /* emptyappTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* emptyappTests.m */; };
+		00E356F31AD99517003FC87E /* emptyAppTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* emptyAppTests.m */; };
 		11FA0C6A9866471DB2CDE574 /* FontAwesome5_Solid.ttf in Resources */ = {isa = PBXBuildFile; fileRef = C72EE95CD67945429ECF8FFC /* FontAwesome5_Solid.ttf */; };
 		13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
 		13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; };
@@ -18,23 +18,23 @@
 		2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
 		2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
 		2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
-		2DCD954D1E0B4F2C00145EB5 /* emptyappTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* emptyappTests.m */; };
+		2DCD954D1E0B4F2C00145EB5 /* emptyAppTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* emptyAppTests.m */; };
 		3158C6A47950427286F1684E /* MaterialCommunityIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 12E6A75E7DD84609A797013D /* MaterialCommunityIcons.ttf */; };
 		65843766EB044381B16C1C35 /* Fontisto.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F093F82CC38A4AFFB1AF0F03 /* Fontisto.ttf */; };
-		687431D2FBD4020120E9D21D /* libPods-emptyappTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = CAE16072FF78B55940E9F3DD /* libPods-emptyappTests.a */; };
+		687431D2FBD4020120E9D21D /* libPods-emptyAppTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = CAE16072FF78B55940E9F3DD /* libPods-emptyAppTests.a */; };
 		6F9FB0944FDD4FC4A4338B9B /* SimpleLineIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F53F944945A14A0DA580B519 /* SimpleLineIcons.ttf */; };
 		743B430B3EF448FEA42310D9 /* Entypo.ttf in Resources */ = {isa = PBXBuildFile; fileRef = CE41FBD39FF34A8198FD38A7 /* Entypo.ttf */; };
 		8CF7B0EED2B941D69DA6ABE5 /* AntDesign.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 5521B08E8DBA4573A604197E /* AntDesign.ttf */; };
 		8FB9861638404A1393B72CB9 /* EvilIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 2583D99A90144B899827A14B /* EvilIcons.ttf */; };
-		90F2E3F571BDC36D6EA06796 /* libPods-emptyapp.a in Frameworks */ = {isa = PBXBuildFile; fileRef = B0BC9E78D6030E649BB0B9A2 /* libPods-emptyapp.a */; };
-		932B4D215739A9CC1A2A08FE /* libPods-emptyapp-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = C2E21C0C3822578E3ADBDCD3 /* libPods-emptyapp-tvOS.a */; };
+		90F2E3F571BDC36D6EA06796 /* libPods-emptyApp.a in Frameworks */ = {isa = PBXBuildFile; fileRef = B0BC9E78D6030E649BB0B9A2 /* libPods-emptyApp.a */; };
+		932B4D215739A9CC1A2A08FE /* libPods-emptyApp-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = C2E21C0C3822578E3ADBDCD3 /* libPods-emptyApp-tvOS.a */; };
 		964D969D285648B19AEB2872 /* Feather.ttf in Resources */ = {isa = PBXBuildFile; fileRef = E719B8237A3D417A861D36D5 /* Feather.ttf */; };
 		A1F4E026B8C746FE8F0A78CB /* MaterialIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = BE2D09809F6B4213AB9F8DAC /* MaterialIcons.ttf */; };
 		B9209B10BC3F43D6B19FEBE0 /* Zocial.ttf in Resources */ = {isa = PBXBuildFile; fileRef = BF694F2B5B0A4187A15F80AD /* Zocial.ttf */; };
 		CB225C28DA714369849AA1E3 /* FontAwesome5_Brands.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 6FD5A45F202B4629BC71DCB5 /* FontAwesome5_Brands.ttf */; };
 		D14E38AC6DED4278A605B868 /* Foundation.ttf in Resources */ = {isa = PBXBuildFile; fileRef = FC870C5F5E744F5BB1EB4F2A /* Foundation.ttf */; };
 		D5CE09C8B7754934BD21387C /* Ionicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 155721587C9D4E05B71891B4 /* Ionicons.ttf */; };
-		E293DE94B147488787B44961 /* libPods-emptyapp-tvOSTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 7F605EB65251234E1FC00D9D /* libPods-emptyapp-tvOSTests.a */; };
+		E293DE94B147488787B44961 /* libPods-emptyApp-tvOSTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 7F605EB65251234E1FC00D9D /* libPods-emptyApp-tvOSTests.a */; };
 		FE1C8F27F181410FBB1D4E90 /* Octicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 379A11462E21408BB7BEDAF6 /* Octicons.ttf */; };
 /* End PBXBuildFile section */
 
@@ -44,58 +44,58 @@
 			containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
 			proxyType = 1;
 			remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
-			remoteInfo = emptyapp;
+			remoteInfo = emptyApp;
 		};
 		2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = {
 			isa = PBXContainerItemProxy;
 			containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
 			proxyType = 1;
 			remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7;
-			remoteInfo = "emptyapp-tvOS";
+			remoteInfo = "emptyApp-tvOS";
 		};
 /* End PBXContainerItemProxy section */
 
 /* Begin PBXFileReference section */
 		008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = "<group>"; };
-		00E356EE1AD99517003FC87E /* emptyappTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = emptyappTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
+		00E356EE1AD99517003FC87E /* emptyAppTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = emptyAppTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
 		00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
-		00E356F21AD99517003FC87E /* emptyappTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = emptyappTests.m; sourceTree = "<group>"; };
+		00E356F21AD99517003FC87E /* emptyAppTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = emptyAppTests.m; sourceTree = "<group>"; };
 		12E6A75E7DD84609A797013D /* 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>"; };
-		13A47EDF11D97457F6F61CEC /* Pods-emptyapp.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-emptyapp.debug.xcconfig"; path = "Pods/Target Support Files/Pods-emptyapp/Pods-emptyapp.debug.xcconfig"; sourceTree = "<group>"; };
-		13B07F961A680F5B00A75B9A /* emptyapp.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = emptyapp.app; sourceTree = BUILT_PRODUCTS_DIR; };
-		13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = emptyapp/AppDelegate.h; sourceTree = "<group>"; };
-		13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = emptyapp/AppDelegate.m; sourceTree = "<group>"; };
+		13A47EDF11D97457F6F61CEC /* Pods-emptyApp.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-emptyApp.debug.xcconfig"; path = "Pods/Target Support Files/Pods-emptyApp/Pods-emptyApp.debug.xcconfig"; sourceTree = "<group>"; };
+		13B07F961A680F5B00A75B9A /* emptyApp.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = emptyApp.app; sourceTree = BUILT_PRODUCTS_DIR; };
+		13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = emptyApp/AppDelegate.h; sourceTree = "<group>"; };
+		13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = emptyApp/AppDelegate.m; sourceTree = "<group>"; };
 		13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = "<group>"; };
-		13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = emptyapp/Images.xcassets; sourceTree = "<group>"; };
-		13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = emptyapp/Info.plist; sourceTree = "<group>"; };
-		13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = emptyapp/main.m; sourceTree = "<group>"; };
+		13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = emptyApp/Images.xcassets; sourceTree = "<group>"; };
+		13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = emptyApp/Info.plist; sourceTree = "<group>"; };
+		13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = emptyApp/main.m; sourceTree = "<group>"; };
 		155721587C9D4E05B71891B4 /* 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>"; };
-		1EB6FC8C3ABD15B9A699CC2D /* Pods-emptyapp.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-emptyapp.release.xcconfig"; path = "Pods/Target Support Files/Pods-emptyapp/Pods-emptyapp.release.xcconfig"; sourceTree = "<group>"; };
+		1EB6FC8C3ABD15B9A699CC2D /* Pods-emptyApp.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-emptyApp.release.xcconfig"; path = "Pods/Target Support Files/Pods-emptyApp/Pods-emptyApp.release.xcconfig"; sourceTree = "<group>"; };
 		2583D99A90144B899827A14B /* 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>"; };
-		2D02E47B1E0B4A5D006451C7 /* emptyapp-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "emptyapp-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; };
-		2D02E4901E0B4A5D006451C7 /* emptyapp-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "emptyapp-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
+		2D02E47B1E0B4A5D006451C7 /* emptyApp-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "emptyApp-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; };
+		2D02E4901E0B4A5D006451C7 /* emptyApp-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "emptyApp-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
 		379A11462E21408BB7BEDAF6 /* 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>"; };
-		54BEB7690A066C721868DB3B /* Pods-emptyapp-tvOSTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-emptyapp-tvOSTests.release.xcconfig"; path = "Pods/Target Support Files/Pods-emptyapp-tvOSTests/Pods-emptyapp-tvOSTests.release.xcconfig"; sourceTree = "<group>"; };
+		54BEB7690A066C721868DB3B /* Pods-emptyApp-tvOSTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-emptyApp-tvOSTests.release.xcconfig"; path = "Pods/Target Support Files/Pods-emptyApp-tvOSTests/Pods-emptyApp-tvOSTests.release.xcconfig"; sourceTree = "<group>"; };
 		5521B08E8DBA4573A604197E /* AntDesign.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = AntDesign.ttf; path = "../node_modules/react-native-vector-icons/Fonts/AntDesign.ttf"; sourceTree = "<group>"; };
-		5F5F37E4A15F7D85CB9028B1 /* Pods-emptyapp-tvOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-emptyapp-tvOS.release.xcconfig"; path = "Pods/Target Support Files/Pods-emptyapp-tvOS/Pods-emptyapp-tvOS.release.xcconfig"; sourceTree = "<group>"; };
+		5F5F37E4A15F7D85CB9028B1 /* Pods-emptyApp-tvOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-emptyApp-tvOS.release.xcconfig"; path = "Pods/Target Support Files/Pods-emptyApp-tvOS/Pods-emptyApp-tvOS.release.xcconfig"; sourceTree = "<group>"; };
 		6685A892653648C187A82D41 /* FontAwesome5_Regular.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = FontAwesome5_Regular.ttf; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Regular.ttf"; sourceTree = "<group>"; };
 		6FD5A45F202B4629BC71DCB5 /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = FontAwesome5_Brands.ttf; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Brands.ttf"; sourceTree = "<group>"; };
 		73C84A2B3D294E9787F448BA /* 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>"; };
-		7F605EB65251234E1FC00D9D /* libPods-emptyapp-tvOSTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-emptyapp-tvOSTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
-		B06B1F2B39724A680235A66F /* Pods-emptyappTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-emptyappTests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-emptyappTests/Pods-emptyappTests.debug.xcconfig"; sourceTree = "<group>"; };
-		B0BC9E78D6030E649BB0B9A2 /* libPods-emptyapp.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-emptyapp.a"; sourceTree = BUILT_PRODUCTS_DIR; };
+		7F605EB65251234E1FC00D9D /* libPods-emptyApp-tvOSTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-emptyApp-tvOSTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
+		B06B1F2B39724A680235A66F /* Pods-emptyAppTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-emptyAppTests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-emptyAppTests/Pods-emptyAppTests.debug.xcconfig"; sourceTree = "<group>"; };
+		B0BC9E78D6030E649BB0B9A2 /* libPods-emptyApp.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-emptyApp.a"; sourceTree = BUILT_PRODUCTS_DIR; };
 		BE2D09809F6B4213AB9F8DAC /* 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>"; };
 		BF694F2B5B0A4187A15F80AD /* 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>"; };
-		C2E21C0C3822578E3ADBDCD3 /* libPods-emptyapp-tvOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-emptyapp-tvOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
-		C537CE6BF8375091B206FDC9 /* Pods-emptyapp-tvOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-emptyapp-tvOS.debug.xcconfig"; path = "Pods/Target Support Files/Pods-emptyapp-tvOS/Pods-emptyapp-tvOS.debug.xcconfig"; sourceTree = "<group>"; };
+		C2E21C0C3822578E3ADBDCD3 /* libPods-emptyApp-tvOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-emptyApp-tvOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
+		C537CE6BF8375091B206FDC9 /* Pods-emptyApp-tvOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-emptyApp-tvOS.debug.xcconfig"; path = "Pods/Target Support Files/Pods-emptyApp-tvOS/Pods-emptyApp-tvOS.debug.xcconfig"; sourceTree = "<group>"; };
 		C72EE95CD67945429ECF8FFC /* FontAwesome5_Solid.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = FontAwesome5_Solid.ttf; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Solid.ttf"; sourceTree = "<group>"; };
-		CAE16072FF78B55940E9F3DD /* libPods-emptyappTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-emptyappTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
+		CAE16072FF78B55940E9F3DD /* libPods-emptyAppTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-emptyAppTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
 		CE41FBD39FF34A8198FD38A7 /* 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>"; };
-		DD13F068882BC895CD7C1552 /* Pods-emptyappTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-emptyappTests.release.xcconfig"; path = "Pods/Target Support Files/Pods-emptyappTests/Pods-emptyappTests.release.xcconfig"; sourceTree = "<group>"; };
+		DD13F068882BC895CD7C1552 /* Pods-emptyAppTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-emptyAppTests.release.xcconfig"; path = "Pods/Target Support Files/Pods-emptyAppTests/Pods-emptyAppTests.release.xcconfig"; sourceTree = "<group>"; };
 		E719B8237A3D417A861D36D5 /* Feather.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Feather.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Feather.ttf"; sourceTree = "<group>"; };
 		ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
 		ED2971642150620600B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS12.0.sdk/System/Library/Frameworks/JavaScriptCore.framework; sourceTree = DEVELOPER_DIR; };
-		EFE39F8BFDF737FA41F48B2E /* Pods-emptyapp-tvOSTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-emptyapp-tvOSTests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-emptyapp-tvOSTests/Pods-emptyapp-tvOSTests.debug.xcconfig"; sourceTree = "<group>"; };
+		EFE39F8BFDF737FA41F48B2E /* Pods-emptyApp-tvOSTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-emptyApp-tvOSTests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-emptyApp-tvOSTests/Pods-emptyApp-tvOSTests.debug.xcconfig"; sourceTree = "<group>"; };
 		F093F82CC38A4AFFB1AF0F03 /* Fontisto.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Fontisto.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Fontisto.ttf"; sourceTree = "<group>"; };
 		F53F944945A14A0DA580B519 /* 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>"; };
 		FC870C5F5E744F5BB1EB4F2A /* 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>"; };
@@ -106,7 +106,7 @@
 			isa = PBXFrameworksBuildPhase;
 			buildActionMask = 2147483647;
 			files = (
-				687431D2FBD4020120E9D21D /* libPods-emptyappTests.a in Frameworks */,
+				687431D2FBD4020120E9D21D /* libPods-emptyAppTests.a in Frameworks */,
 			);
 			runOnlyForDeploymentPostprocessing = 0;
 		};
@@ -114,7 +114,7 @@
 			isa = PBXFrameworksBuildPhase;
 			buildActionMask = 2147483647;
 			files = (
-				90F2E3F571BDC36D6EA06796 /* libPods-emptyapp.a in Frameworks */,
+				90F2E3F571BDC36D6EA06796 /* libPods-emptyApp.a in Frameworks */,
 			);
 			runOnlyForDeploymentPostprocessing = 0;
 		};
@@ -122,7 +122,7 @@
 			isa = PBXFrameworksBuildPhase;
 			buildActionMask = 2147483647;
 			files = (
-				932B4D215739A9CC1A2A08FE /* libPods-emptyapp-tvOS.a in Frameworks */,
+				932B4D215739A9CC1A2A08FE /* libPods-emptyApp-tvOS.a in Frameworks */,
 			);
 			runOnlyForDeploymentPostprocessing = 0;
 		};
@@ -130,20 +130,20 @@
 			isa = PBXFrameworksBuildPhase;
 			buildActionMask = 2147483647;
 			files = (
-				E293DE94B147488787B44961 /* libPods-emptyapp-tvOSTests.a in Frameworks */,
+				E293DE94B147488787B44961 /* libPods-emptyApp-tvOSTests.a in Frameworks */,
 			);
 			runOnlyForDeploymentPostprocessing = 0;
 		};
 /* End PBXFrameworksBuildPhase section */
 
 /* Begin PBXGroup section */
-		00E356EF1AD99517003FC87E /* emptyappTests */ = {
+		00E356EF1AD99517003FC87E /* emptyAppTests */ = {
 			isa = PBXGroup;
 			children = (
-				00E356F21AD99517003FC87E /* emptyappTests.m */,
+				00E356F21AD99517003FC87E /* emptyAppTests.m */,
 				00E356F01AD99517003FC87E /* Supporting Files */,
 			);
-			path = emptyappTests;
+			path = emptyAppTests;
 			sourceTree = "<group>";
 		};
 		00E356F01AD99517003FC87E /* Supporting Files */ = {
@@ -154,7 +154,7 @@
 			name = "Supporting Files";
 			sourceTree = "<group>";
 		};
-		13B07FAE1A68108700A75B9A /* emptyapp */ = {
+		13B07FAE1A68108700A75B9A /* emptyApp */ = {
 			isa = PBXGroup;
 			children = (
 				008F07F21AC5B25A0029DE68 /* main.jsbundle */,
@@ -165,7 +165,7 @@
 				13B07FB11A68108700A75B9A /* LaunchScreen.xib */,
 				13B07FB71A68108700A75B9A /* main.m */,
 			);
-			name = emptyapp;
+			name = emptyApp;
 			sourceTree = "<group>";
 		};
 		222B1436A6E24A0DB433E0AA /* Resources */ = {
@@ -196,10 +196,10 @@
 			children = (
 				ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
 				ED2971642150620600B7C4FE /* JavaScriptCore.framework */,
-				B0BC9E78D6030E649BB0B9A2 /* libPods-emptyapp.a */,
-				C2E21C0C3822578E3ADBDCD3 /* libPods-emptyapp-tvOS.a */,
-				7F605EB65251234E1FC00D9D /* libPods-emptyapp-tvOSTests.a */,
-				CAE16072FF78B55940E9F3DD /* libPods-emptyappTests.a */,
+				B0BC9E78D6030E649BB0B9A2 /* libPods-emptyApp.a */,
+				C2E21C0C3822578E3ADBDCD3 /* libPods-emptyApp-tvOS.a */,
+				7F605EB65251234E1FC00D9D /* libPods-emptyApp-tvOSTests.a */,
+				CAE16072FF78B55940E9F3DD /* libPods-emptyAppTests.a */,
 			);
 			name = Frameworks;
 			sourceTree = "<group>";
@@ -207,14 +207,14 @@
 		4B0DAF0500A54A60870224A9 /* Pods */ = {
 			isa = PBXGroup;
 			children = (
-				13A47EDF11D97457F6F61CEC /* Pods-emptyapp.debug.xcconfig */,
-				1EB6FC8C3ABD15B9A699CC2D /* Pods-emptyapp.release.xcconfig */,
-				C537CE6BF8375091B206FDC9 /* Pods-emptyapp-tvOS.debug.xcconfig */,
-				5F5F37E4A15F7D85CB9028B1 /* Pods-emptyapp-tvOS.release.xcconfig */,
-				EFE39F8BFDF737FA41F48B2E /* Pods-emptyapp-tvOSTests.debug.xcconfig */,
-				54BEB7690A066C721868DB3B /* Pods-emptyapp-tvOSTests.release.xcconfig */,
-				B06B1F2B39724A680235A66F /* Pods-emptyappTests.debug.xcconfig */,
-				DD13F068882BC895CD7C1552 /* Pods-emptyappTests.release.xcconfig */,
+				13A47EDF11D97457F6F61CEC /* Pods-emptyApp.debug.xcconfig */,
+				1EB6FC8C3ABD15B9A699CC2D /* Pods-emptyApp.release.xcconfig */,
+				C537CE6BF8375091B206FDC9 /* Pods-emptyApp-tvOS.debug.xcconfig */,
+				5F5F37E4A15F7D85CB9028B1 /* Pods-emptyApp-tvOS.release.xcconfig */,
+				EFE39F8BFDF737FA41F48B2E /* Pods-emptyApp-tvOSTests.debug.xcconfig */,
+				54BEB7690A066C721868DB3B /* Pods-emptyApp-tvOSTests.release.xcconfig */,
+				B06B1F2B39724A680235A66F /* Pods-emptyAppTests.debug.xcconfig */,
+				DD13F068882BC895CD7C1552 /* Pods-emptyAppTests.release.xcconfig */,
 			);
 			name = Pods;
 			sourceTree = "<group>";
@@ -229,9 +229,9 @@
 		83CBB9F61A601CBA00E9B192 = {
 			isa = PBXGroup;
 			children = (
-				13B07FAE1A68108700A75B9A /* emptyapp */,
+				13B07FAE1A68108700A75B9A /* emptyApp */,
 				832341AE1AAA6A7D00B99B32 /* Libraries */,
-				00E356EF1AD99517003FC87E /* emptyappTests */,
+				00E356EF1AD99517003FC87E /* emptyAppTests */,
 				83CBBA001A601CBA00E9B192 /* Products */,
 				2D16E6871FA4F8E400B85C8A /* Frameworks */,
 				222B1436A6E24A0DB433E0AA /* Resources */,
@@ -245,10 +245,10 @@
 		83CBBA001A601CBA00E9B192 /* Products */ = {
 			isa = PBXGroup;
 			children = (
-				13B07F961A680F5B00A75B9A /* emptyapp.app */,
-				00E356EE1AD99517003FC87E /* emptyappTests.xctest */,
-				2D02E47B1E0B4A5D006451C7 /* emptyapp-tvOS.app */,
-				2D02E4901E0B4A5D006451C7 /* emptyapp-tvOSTests.xctest */,
+				13B07F961A680F5B00A75B9A /* emptyApp.app */,
+				00E356EE1AD99517003FC87E /* emptyAppTests.xctest */,
+				2D02E47B1E0B4A5D006451C7 /* emptyApp-tvOS.app */,
+				2D02E4901E0B4A5D006451C7 /* emptyApp-tvOSTests.xctest */,
 			);
 			name = Products;
 			sourceTree = "<group>";
@@ -256,9 +256,9 @@
 /* End PBXGroup section */
 
 /* Begin PBXNativeTarget section */
-		00E356ED1AD99517003FC87E /* emptyappTests */ = {
+		00E356ED1AD99517003FC87E /* emptyAppTests */ = {
 			isa = PBXNativeTarget;
-			buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "emptyappTests" */;
+			buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "emptyAppTests" */;
 			buildPhases = (
 				6CDA2430B8EA01A5A6E85F5D /* [CP] Check Pods Manifest.lock */,
 				00E356EA1AD99517003FC87E /* Sources */,
@@ -270,14 +270,14 @@
 			dependencies = (
 				00E356F51AD99517003FC87E /* PBXTargetDependency */,
 			);
-			name = emptyappTests;
-			productName = emptyappTests;
-			productReference = 00E356EE1AD99517003FC87E /* emptyappTests.xctest */;
+			name = emptyAppTests;
+			productName = emptyAppTests;
+			productReference = 00E356EE1AD99517003FC87E /* emptyAppTests.xctest */;
 			productType = "com.apple.product-type.bundle.unit-test";
 		};
-		13B07F861A680F5B00A75B9A /* emptyapp */ = {
+		13B07F861A680F5B00A75B9A /* emptyApp */ = {
 			isa = PBXNativeTarget;
-			buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "emptyapp" */;
+			buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "emptyApp" */;
 			buildPhases = (
 				AAB1D57AD732089FC4F72EAB /* [CP] Check Pods Manifest.lock */,
 				FD10A7F022414F080027D42C /* Start Packager */,
@@ -291,14 +291,14 @@
 			);
 			dependencies = (
 			);
-			name = emptyapp;
-			productName = emptyapp;
-			productReference = 13B07F961A680F5B00A75B9A /* emptyapp.app */;
+			name = emptyApp;
+			productName = emptyApp;
+			productReference = 13B07F961A680F5B00A75B9A /* emptyApp.app */;
 			productType = "com.apple.product-type.application";
 		};
-		2D02E47A1E0B4A5D006451C7 /* emptyapp-tvOS */ = {
+		2D02E47A1E0B4A5D006451C7 /* emptyApp-tvOS */ = {
 			isa = PBXNativeTarget;
-			buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "emptyapp-tvOS" */;
+			buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "emptyApp-tvOS" */;
 			buildPhases = (
 				FF6C60E8FA7921D1F07E790D /* [CP] Check Pods Manifest.lock */,
 				FD10A7F122414F3F0027D42C /* Start Packager */,
@@ -311,14 +311,14 @@
 			);
 			dependencies = (
 			);
-			name = "emptyapp-tvOS";
-			productName = "emptyapp-tvOS";
-			productReference = 2D02E47B1E0B4A5D006451C7 /* emptyapp-tvOS.app */;
+			name = "emptyApp-tvOS";
+			productName = "emptyApp-tvOS";
+			productReference = 2D02E47B1E0B4A5D006451C7 /* emptyApp-tvOS.app */;
 			productType = "com.apple.product-type.application";
 		};
-		2D02E48F1E0B4A5D006451C7 /* emptyapp-tvOSTests */ = {
+		2D02E48F1E0B4A5D006451C7 /* emptyApp-tvOSTests */ = {
 			isa = PBXNativeTarget;
-			buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "emptyapp-tvOSTests" */;
+			buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "emptyApp-tvOSTests" */;
 			buildPhases = (
 				6E019367F726D6E395E6C8C2 /* [CP] Check Pods Manifest.lock */,
 				2D02E48C1E0B4A5D006451C7 /* Sources */,
@@ -330,9 +330,9 @@
 			dependencies = (
 				2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */,
 			);
-			name = "emptyapp-tvOSTests";
-			productName = "emptyapp-tvOSTests";
-			productReference = 2D02E4901E0B4A5D006451C7 /* emptyapp-tvOSTests.xctest */;
+			name = "emptyApp-tvOSTests";
+			productName = "emptyApp-tvOSTests";
+			productReference = 2D02E4901E0B4A5D006451C7 /* emptyApp-tvOSTests.xctest */;
 			productType = "com.apple.product-type.bundle.unit-test";
 		};
 /* End PBXNativeTarget section */
@@ -359,7 +359,7 @@
 					};
 				};
 			};
-			buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "emptyapp" */;
+			buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "emptyApp" */;
 			compatibilityVersion = "Xcode 3.2";
 			developmentRegion = English;
 			hasScannedForEncodings = 0;
@@ -373,10 +373,10 @@
 			projectDirPath = "";
 			projectRoot = "";
 			targets = (
-				13B07F861A680F5B00A75B9A /* emptyapp */,
-				00E356ED1AD99517003FC87E /* emptyappTests */,
-				2D02E47A1E0B4A5D006451C7 /* emptyapp-tvOS */,
-				2D02E48F1E0B4A5D006451C7 /* emptyapp-tvOSTests */,
+				13B07F861A680F5B00A75B9A /* emptyApp */,
+				00E356ED1AD99517003FC87E /* emptyAppTests */,
+				2D02E47A1E0B4A5D006451C7 /* emptyApp-tvOS */,
+				2D02E48F1E0B4A5D006451C7 /* emptyApp-tvOSTests */,
 			);
 		};
 /* End PBXProject section */
@@ -475,7 +475,7 @@
 			outputFileListPaths = (
 			);
 			outputPaths = (
-				"$(DERIVED_FILE_DIR)/Pods-emptyappTests-checkManifestLockResult.txt",
+				"$(DERIVED_FILE_DIR)/Pods-emptyAppTests-checkManifestLockResult.txt",
 			);
 			runOnlyForDeploymentPostprocessing = 0;
 			shellPath = /bin/sh;
@@ -497,7 +497,7 @@
 			outputFileListPaths = (
 			);
 			outputPaths = (
-				"$(DERIVED_FILE_DIR)/Pods-emptyapp-tvOSTests-checkManifestLockResult.txt",
+				"$(DERIVED_FILE_DIR)/Pods-emptyApp-tvOSTests-checkManifestLockResult.txt",
 			);
 			runOnlyForDeploymentPostprocessing = 0;
 			shellPath = /bin/sh;
@@ -519,7 +519,7 @@
 			outputFileListPaths = (
 			);
 			outputPaths = (
-				"$(DERIVED_FILE_DIR)/Pods-emptyapp-checkManifestLockResult.txt",
+				"$(DERIVED_FILE_DIR)/Pods-emptyApp-checkManifestLockResult.txt",
 			);
 			runOnlyForDeploymentPostprocessing = 0;
 			shellPath = /bin/sh;
@@ -534,7 +534,7 @@
 			inputFileListPaths = (
 			);
 			inputPaths = (
-				"${SRCROOT}/Pods/Target Support Files/Pods-emptyapp/Pods-emptyapp-resources.sh",
+				"${SRCROOT}/Pods/Target Support Files/Pods-emptyApp/Pods-emptyApp-resources.sh",
 				"${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/AntDesign.ttf",
 				"${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Entypo.ttf",
 				"${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/EvilIcons.ttf",
@@ -575,7 +575,7 @@
 			);
 			runOnlyForDeploymentPostprocessing = 0;
 			shellPath = /bin/sh;
-			shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-emptyapp/Pods-emptyapp-resources.sh\"\n";
+			shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-emptyApp/Pods-emptyApp-resources.sh\"\n";
 			showEnvVarsInLog = 0;
 		};
 		FD10A7F022414F080027D42C /* Start Packager */ = {
@@ -631,7 +631,7 @@
 			outputFileListPaths = (
 			);
 			outputPaths = (
-				"$(DERIVED_FILE_DIR)/Pods-emptyapp-tvOS-checkManifestLockResult.txt",
+				"$(DERIVED_FILE_DIR)/Pods-emptyApp-tvOS-checkManifestLockResult.txt",
 			);
 			runOnlyForDeploymentPostprocessing = 0;
 			shellPath = /bin/sh;
@@ -645,7 +645,7 @@
 			isa = PBXSourcesBuildPhase;
 			buildActionMask = 2147483647;
 			files = (
-				00E356F31AD99517003FC87E /* emptyappTests.m in Sources */,
+				00E356F31AD99517003FC87E /* emptyAppTests.m in Sources */,
 			);
 			runOnlyForDeploymentPostprocessing = 0;
 		};
@@ -671,7 +671,7 @@
 			isa = PBXSourcesBuildPhase;
 			buildActionMask = 2147483647;
 			files = (
-				2DCD954D1E0B4F2C00145EB5 /* emptyappTests.m in Sources */,
+				2DCD954D1E0B4F2C00145EB5 /* emptyAppTests.m in Sources */,
 			);
 			runOnlyForDeploymentPostprocessing = 0;
 		};
@@ -680,12 +680,12 @@
 /* Begin PBXTargetDependency section */
 		00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
 			isa = PBXTargetDependency;
-			target = 13B07F861A680F5B00A75B9A /* emptyapp */;
+			target = 13B07F861A680F5B00A75B9A /* emptyApp */;
 			targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
 		};
 		2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = {
 			isa = PBXTargetDependency;
-			target = 2D02E47A1E0B4A5D006451C7 /* emptyapp-tvOS */;
+			target = 2D02E47A1E0B4A5D006451C7 /* emptyApp-tvOS */;
 			targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */;
 		};
 /* End PBXTargetDependency section */
@@ -697,7 +697,7 @@
 				13B07FB21A68108700A75B9A /* Base */,
 			);
 			name = LaunchScreen.xib;
-			path = emptyapp;
+			path = emptyApp;
 			sourceTree = "<group>";
 		};
 /* End PBXVariantGroup section */
@@ -705,14 +705,14 @@
 /* Begin XCBuildConfiguration section */
 		00E356F61AD99517003FC87E /* Debug */ = {
 			isa = XCBuildConfiguration;
-			baseConfigurationReference = B06B1F2B39724A680235A66F /* Pods-emptyappTests.debug.xcconfig */;
+			baseConfigurationReference = B06B1F2B39724A680235A66F /* Pods-emptyAppTests.debug.xcconfig */;
 			buildSettings = {
 				BUNDLE_LOADER = "$(TEST_HOST)";
 				GCC_PREPROCESSOR_DEFINITIONS = (
 					"DEBUG=1",
 					"$(inherited)",
 				);
-				INFOPLIST_FILE = emptyappTests/Info.plist;
+				INFOPLIST_FILE = emptyAppTests/Info.plist;
 				IPHONEOS_DEPLOYMENT_TARGET = 9.0;
 				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
 				OTHER_LDFLAGS = (
@@ -722,17 +722,17 @@
 				);
 				PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
 				PRODUCT_NAME = "$(TARGET_NAME)";
-				TEST_HOST = "$(BUILT_PRODUCTS_DIR)/emptyapp.app/emptyapp";
+				TEST_HOST = "$(BUILT_PRODUCTS_DIR)/emptyApp.app/emptyApp";
 			};
 			name = Debug;
 		};
 		00E356F71AD99517003FC87E /* Release */ = {
 			isa = XCBuildConfiguration;
-			baseConfigurationReference = DD13F068882BC895CD7C1552 /* Pods-emptyappTests.release.xcconfig */;
+			baseConfigurationReference = DD13F068882BC895CD7C1552 /* Pods-emptyAppTests.release.xcconfig */;
 			buildSettings = {
 				BUNDLE_LOADER = "$(TEST_HOST)";
 				COPY_PHASE_STRIP = NO;
-				INFOPLIST_FILE = emptyappTests/Info.plist;
+				INFOPLIST_FILE = emptyAppTests/Info.plist;
 				IPHONEOS_DEPLOYMENT_TARGET = 9.0;
 				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
 				OTHER_LDFLAGS = (
@@ -742,18 +742,18 @@
 				);
 				PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
 				PRODUCT_NAME = "$(TARGET_NAME)";
-				TEST_HOST = "$(BUILT_PRODUCTS_DIR)/emptyapp.app/emptyapp";
+				TEST_HOST = "$(BUILT_PRODUCTS_DIR)/emptyApp.app/emptyApp";
 			};
 			name = Release;
 		};
 		13B07F941A680F5B00A75B9A /* Debug */ = {
 			isa = XCBuildConfiguration;
-			baseConfigurationReference = 13A47EDF11D97457F6F61CEC /* Pods-emptyapp.debug.xcconfig */;
+			baseConfigurationReference = 13A47EDF11D97457F6F61CEC /* Pods-emptyApp.debug.xcconfig */;
 			buildSettings = {
 				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
 				CURRENT_PROJECT_VERSION = 1;
 				DEAD_CODE_STRIPPING = NO;
-				INFOPLIST_FILE = emptyapp/Info.plist;
+				INFOPLIST_FILE = emptyApp/Info.plist;
 				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
 				OTHER_LDFLAGS = (
 					"$(inherited)",
@@ -761,18 +761,18 @@
 					"-lc++",
 				);
 				PRODUCT_BUNDLE_IDENTIFIER = kr.co.plusonnet.empty;
-				PRODUCT_NAME = emptyapp;
+				PRODUCT_NAME = emptyApp;
 				VERSIONING_SYSTEM = "apple-generic";
 			};
 			name = Debug;
 		};
 		13B07F951A680F5B00A75B9A /* Release */ = {
 			isa = XCBuildConfiguration;
-			baseConfigurationReference = 1EB6FC8C3ABD15B9A699CC2D /* Pods-emptyapp.release.xcconfig */;
+			baseConfigurationReference = 1EB6FC8C3ABD15B9A699CC2D /* Pods-emptyApp.release.xcconfig */;
 			buildSettings = {
 				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
 				CURRENT_PROJECT_VERSION = 1;
-				INFOPLIST_FILE = emptyapp/Info.plist;
+				INFOPLIST_FILE = emptyApp/Info.plist;
 				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
 				OTHER_LDFLAGS = (
 					"$(inherited)",
@@ -780,14 +780,14 @@
 					"-lc++",
 				);
 				PRODUCT_BUNDLE_IDENTIFIER = kr.co.plusonnet.empty;
-				PRODUCT_NAME = emptyapp;
+				PRODUCT_NAME = emptyApp;
 				VERSIONING_SYSTEM = "apple-generic";
 			};
 			name = Release;
 		};
 		2D02E4971E0B4A5E006451C7 /* Debug */ = {
 			isa = XCBuildConfiguration;
-			baseConfigurationReference = C537CE6BF8375091B206FDC9 /* Pods-emptyapp-tvOS.debug.xcconfig */;
+			baseConfigurationReference = C537CE6BF8375091B206FDC9 /* Pods-emptyApp-tvOS.debug.xcconfig */;
 			buildSettings = {
 				ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
 				ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
@@ -798,14 +798,14 @@
 				DEBUG_INFORMATION_FORMAT = dwarf;
 				ENABLE_TESTABILITY = YES;
 				GCC_NO_COMMON_BLOCKS = YES;
-				INFOPLIST_FILE = "emptyapp-tvOS/Info.plist";
+				INFOPLIST_FILE = "emptyApp-tvOS/Info.plist";
 				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
 				OTHER_LDFLAGS = (
 					"$(inherited)",
 					"-ObjC",
 					"-lc++",
 				);
-				PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.emptyapp-tvOS";
+				PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.emptyApp-tvOS";
 				PRODUCT_NAME = "$(TARGET_NAME)";
 				SDKROOT = appletvos;
 				TARGETED_DEVICE_FAMILY = 3;
@@ -815,7 +815,7 @@
 		};
 		2D02E4981E0B4A5E006451C7 /* Release */ = {
 			isa = XCBuildConfiguration;
-			baseConfigurationReference = 5F5F37E4A15F7D85CB9028B1 /* Pods-emptyapp-tvOS.release.xcconfig */;
+			baseConfigurationReference = 5F5F37E4A15F7D85CB9028B1 /* Pods-emptyApp-tvOS.release.xcconfig */;
 			buildSettings = {
 				ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
 				ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
@@ -826,14 +826,14 @@
 				COPY_PHASE_STRIP = NO;
 				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
 				GCC_NO_COMMON_BLOCKS = YES;
-				INFOPLIST_FILE = "emptyapp-tvOS/Info.plist";
+				INFOPLIST_FILE = "emptyApp-tvOS/Info.plist";
 				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
 				OTHER_LDFLAGS = (
 					"$(inherited)",
 					"-ObjC",
 					"-lc++",
 				);
-				PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.emptyapp-tvOS";
+				PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.emptyApp-tvOS";
 				PRODUCT_NAME = "$(TARGET_NAME)";
 				SDKROOT = appletvos;
 				TARGETED_DEVICE_FAMILY = 3;
@@ -843,7 +843,7 @@
 		};
 		2D02E4991E0B4A5E006451C7 /* Debug */ = {
 			isa = XCBuildConfiguration;
-			baseConfigurationReference = EFE39F8BFDF737FA41F48B2E /* Pods-emptyapp-tvOSTests.debug.xcconfig */;
+			baseConfigurationReference = EFE39F8BFDF737FA41F48B2E /* Pods-emptyApp-tvOSTests.debug.xcconfig */;
 			buildSettings = {
 				BUNDLE_LOADER = "$(TEST_HOST)";
 				CLANG_ANALYZER_NONNULL = YES;
@@ -853,24 +853,24 @@
 				DEBUG_INFORMATION_FORMAT = dwarf;
 				ENABLE_TESTABILITY = YES;
 				GCC_NO_COMMON_BLOCKS = YES;
-				INFOPLIST_FILE = "emptyapp-tvOSTests/Info.plist";
+				INFOPLIST_FILE = "emptyApp-tvOSTests/Info.plist";
 				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
 				OTHER_LDFLAGS = (
 					"$(inherited)",
 					"-ObjC",
 					"-lc++",
 				);
-				PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.emptyapp-tvOSTests";
+				PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.emptyApp-tvOSTests";
 				PRODUCT_NAME = "$(TARGET_NAME)";
 				SDKROOT = appletvos;
-				TEST_HOST = "$(BUILT_PRODUCTS_DIR)/emptyapp-tvOS.app/emptyapp-tvOS";
+				TEST_HOST = "$(BUILT_PRODUCTS_DIR)/emptyApp-tvOS.app/emptyApp-tvOS";
 				TVOS_DEPLOYMENT_TARGET = 10.1;
 			};
 			name = Debug;
 		};
 		2D02E49A1E0B4A5E006451C7 /* Release */ = {
 			isa = XCBuildConfiguration;
-			baseConfigurationReference = 54BEB7690A066C721868DB3B /* Pods-emptyapp-tvOSTests.release.xcconfig */;
+			baseConfigurationReference = 54BEB7690A066C721868DB3B /* Pods-emptyApp-tvOSTests.release.xcconfig */;
 			buildSettings = {
 				BUNDLE_LOADER = "$(TEST_HOST)";
 				CLANG_ANALYZER_NONNULL = YES;
@@ -880,17 +880,17 @@
 				COPY_PHASE_STRIP = NO;
 				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
 				GCC_NO_COMMON_BLOCKS = YES;
-				INFOPLIST_FILE = "emptyapp-tvOSTests/Info.plist";
+				INFOPLIST_FILE = "emptyApp-tvOSTests/Info.plist";
 				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
 				OTHER_LDFLAGS = (
 					"$(inherited)",
 					"-ObjC",
 					"-lc++",
 				);
-				PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.emptyapp-tvOSTests";
+				PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.emptyApp-tvOSTests";
 				PRODUCT_NAME = "$(TARGET_NAME)";
 				SDKROOT = appletvos;
-				TEST_HOST = "$(BUILT_PRODUCTS_DIR)/emptyapp-tvOS.app/emptyapp-tvOS";
+				TEST_HOST = "$(BUILT_PRODUCTS_DIR)/emptyApp-tvOS.app/emptyApp-tvOS";
 				TVOS_DEPLOYMENT_TARGET = 10.1;
 			};
 			name = Release;
@@ -997,7 +997,7 @@
 /* End XCBuildConfiguration section */
 
 /* Begin XCConfigurationList section */
-		00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "emptyappTests" */ = {
+		00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "emptyAppTests" */ = {
 			isa = XCConfigurationList;
 			buildConfigurations = (
 				00E356F61AD99517003FC87E /* Debug */,
@@ -1006,7 +1006,7 @@
 			defaultConfigurationIsVisible = 0;
 			defaultConfigurationName = Release;
 		};
-		13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "emptyapp" */ = {
+		13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "emptyApp" */ = {
 			isa = XCConfigurationList;
 			buildConfigurations = (
 				13B07F941A680F5B00A75B9A /* Debug */,
@@ -1015,7 +1015,7 @@
 			defaultConfigurationIsVisible = 0;
 			defaultConfigurationName = Release;
 		};
-		2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "emptyapp-tvOS" */ = {
+		2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "emptyApp-tvOS" */ = {
 			isa = XCConfigurationList;
 			buildConfigurations = (
 				2D02E4971E0B4A5E006451C7 /* Debug */,
@@ -1024,7 +1024,7 @@
 			defaultConfigurationIsVisible = 0;
 			defaultConfigurationName = Release;
 		};
-		2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "emptyapp-tvOSTests" */ = {
+		2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "emptyApp-tvOSTests" */ = {
 			isa = XCConfigurationList;
 			buildConfigurations = (
 				2D02E4991E0B4A5E006451C7 /* Debug */,
@@ -1033,7 +1033,7 @@
 			defaultConfigurationIsVisible = 0;
 			defaultConfigurationName = Release;
 		};
-		83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "emptyapp" */ = {
+		83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "emptyApp" */ = {
 			isa = XCConfigurationList;
 			buildConfigurations = (
 				83CBBA201A601CBA00E9B192 /* Debug */,

ios/emptyapp.xcodeproj/xcshareddata/xcschemes/emptyapp-tvOS.xcscheme → ios/emptyApp.xcodeproj/xcshareddata/xcschemes/emptyapp-tvOS.xcscheme


ios/emptyapp.xcodeproj/xcshareddata/xcschemes/emptyapp.xcscheme → ios/emptyApp.xcodeproj/xcshareddata/xcschemes/emptyapp.xcscheme


+ 1 - 1
ios/emptyapp.xcworkspace/contents.xcworkspacedata

@@ -2,7 +2,7 @@
 <Workspace
    version = "1.0">
    <FileRef
-      location = "group:emptyapp.xcodeproj">
+      location = "group:emptyApp.xcodeproj">
    </FileRef>
    <FileRef
       location = "group:Pods/Pods.xcodeproj">

ios/emptyapp.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist → ios/emptyApp.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist


ios/emptyapp/AppDelegate.h → ios/emptyApp/AppDelegate.h


+ 1 - 1
ios/emptyapp/AppDelegate.m

@@ -17,7 +17,7 @@
 {
   RCTBridge *bridge = [[RCTBridge alloc] initWithDelegate:self launchOptions:launchOptions];
   RCTRootView *rootView = [[RCTRootView alloc] initWithBridge:bridge
-                                                   moduleName:@"emptyapp"
+                                                   moduleName:@"emptyApp"
                                             initialProperties:nil];
 
   rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1];

+ 1 - 1
ios/emptyapp/Base.lproj/LaunchScreen.xib

@@ -18,7 +18,7 @@
                     <color key="textColor" cocoaTouchSystemColor="darkTextColor"/>
                     <nil key="highlightedColor"/>
                 </label>
-                <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="emptyapp" textAlignment="center" lineBreakMode="middleTruncation" baselineAdjustment="alignBaselines" minimumFontSize="18" translatesAutoresizingMaskIntoConstraints="NO" id="kId-c2-rCX">
+                <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="emptyApp" textAlignment="center" lineBreakMode="middleTruncation" baselineAdjustment="alignBaselines" minimumFontSize="18" translatesAutoresizingMaskIntoConstraints="NO" id="kId-c2-rCX">
                     <rect key="frame" x="20" y="140" width="441" height="43"/>
                     <fontDescription key="fontDescription" type="boldSystem" pointSize="36"/>
                     <color key="textColor" cocoaTouchSystemColor="darkTextColor"/>

ios/emptyapp/Images.xcassets/AppIcon.appiconset/Contents.json → ios/emptyApp/Images.xcassets/AppIcon.appiconset/Contents.json


ios/emptyapp/Images.xcassets/Contents.json → ios/emptyApp/Images.xcassets/Contents.json


+ 1 - 1
ios/emptyapp/Info.plist

@@ -5,7 +5,7 @@
 	<key>CFBundleDevelopmentRegion</key>
 	<string>en</string>
 	<key>CFBundleDisplayName</key>
-	<string>emptyapp</string>
+	<string>emptyApp</string>
 	<key>CFBundleExecutable</key>
 	<string>$(EXECUTABLE_NAME)</string>
 	<key>CFBundleIdentifier</key>

ios/emptyapp/main.m → ios/emptyApp/main.m


ios/emptyappTests/Info.plist → ios/emptyAppTests/Info.plist


ios/emptyappTests/emptyappTests.m → ios/emptyAppTests/emptyappTests.m


+ 1 - 1
package.json

@@ -1,5 +1,5 @@
 {
-  "name": "emptyapp",
+  "name": "emptyApp",
   "version": "0.0.1",
   "private": true,
   "scripts": {

+ 6 - 7
src/pages/PlayerGesture.js

@@ -22,12 +22,12 @@ import { getInset } from 'react-native-safe-area-view';
 
 const { width, height } = Dimensions.get('window');
 const statusBarHeight = getStatusBarHeight();
-const minHeight = height * 0.07;
-const midBound = height - height *0.8; 
-const upperBound = C.n2cls("h80").height;
-  // height > 560        
-  //   ? 
-  //   :height * 0.70;
+const minHeight = height * 0.1;
+const midBound = height - height / 2.5;
+const upperBound = 
+  height > 560
+    ?height * 0.75 - getInset('bottom')
+    :height * 0.70;
 
 const {
   Value,
@@ -206,7 +206,6 @@ const Player = props => {
         <Animated.View
           style={{
             ...StyleSheet.absoluteFillObject,
-            flex:0.1,
             zIndex: 10,
             marginTop: statusBarHeight,
             transform: [{ translateY }],