diff --git a/README.md b/README.md index f97a633..727f47d 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # rnw-github [![Build status](https://build.appcenter.ms/v0.1/apps/5e9d98d7-a605-49c7-b921-94ebda4a0d4e/branches/master/badge)](https://appcenter.ms) [![CircleCI](https://circleci.com/gh/haruelrovix/rnw-github/tree/master.svg?style=svg)](https://circleci.com/gh/haruelrovix/rnw-github/tree/master) A React Native Web app that fetches GitHub API. -- Run on Android and Web 🎉 +- Run on Android, IOS and Web 🎉 - Infinite Scroll ## Deployment @@ -14,9 +14,10 @@ The `apk` for Android can be downloaded [here](https://appcenter.ms/download?url Continuous Deployment by [Visual Studio App Center](https://appcenter.ms) for Native and [CircleCI](https://circleci.com/dashboard) for Web. 🔥 -||Android|Web| -|-|-|-| -|Home||| +||Android|Web|Ios| +|-|-|-|-| +|Home|||screen shot 2018-10-27 at 11 55 16 pm + ## Development @@ -66,10 +67,35 @@ Continuous Deployment by [Visual Studio App Center](https://appcenter.ms) for Na ### iOS - -In theory, it should be can be run on iOS simulator using `yarn ios` command. Have no Mac machine to test it. 😅 - - + +You have to run `yarn` or `npm install` first to download the dependencies. +Then simply run `yarn ios`. + +If you got an error related to `AppCenter`, you should follow the steps below, +These are some steps to install AppCenter on Mac OS: + +1. make sure you have installed cocoapods, if you haven't, then run this command on your terminal + +``` $ sudo gem install cocoapods --source http://rubygems.org ``` +2. install app center by executing this command : + +``` $ yarn add appcenter appcenter-analytics appcenter-crashes --exact ``` +3. Link the plugins to the React Native app by using the react-native link command. +``` +react-native link appcenter +react-native link appcenter-analytics +react-native link appcenter-crashes +``` +4. Run Application again 'yarn ios' + + +In case you need some information about Cocoapods and AppCenter, the following link might be helpful for you: + +1. [Cocoapods](https://guides.cocoapods.org/using/getting-started.html) +2. [AppCenter](https://docs.microsoft.com/en-us/appcenter/) +3. [AppCenter for React Native](https://docs.microsoft.com/en-us/appcenter/sdk/getting-started/react-native) + + ## Acknowledgements RNW GitHub created using [react-native-web](https://github.com/necolas/react-native-web) and [react-native-elements](https://github.com/react-native-training/react-native-elements). 💖 Bootstrapped with [CRNWA](https://github.com/VISI-ONE/create-react-native-web-app). diff --git a/android/app/build.gradle b/android/app/build.gradle index 23ece95..7fcc22f 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -137,10 +137,12 @@ android { } dependencies { + compile project(':react-native-vector-icons') + compile project(':appcenter-crashes') + compile project(':appcenter-analytics') + compile project(':appcenter') implementation fileTree(dir: "libs", include: ["*.jar"]) - implementation project(':appcenter') - implementation project(':appcenter-analytics') - implementation project(':appcenter-crashes') + implementation project(':react-native-vector-icons') implementation "com.android.support:appcompat-v7:23.0.1" implementation "com.facebook.react:react-native:+" // From node_modules diff --git a/android/app/src/main/assets/fonts/Feather.ttf b/android/app/src/main/assets/fonts/Feather.ttf old mode 100644 new mode 100755 diff --git a/android/app/src/main/java/com/creaternwapp/MainApplication.java b/android/app/src/main/java/com/creaternwapp/MainApplication.java index 8f1c9e3..6e11915 100644 --- a/android/app/src/main/java/com/creaternwapp/MainApplication.java +++ b/android/app/src/main/java/com/creaternwapp/MainApplication.java @@ -3,6 +3,8 @@ import android.app.Application; import com.facebook.react.ReactApplication; +import com.oblador.vectoricons.VectorIconsPackage; + import com.microsoft.appcenter.reactnative.crashes.AppCenterReactNativeCrashesPackage; import com.microsoft.appcenter.reactnative.analytics.AppCenterReactNativeAnalyticsPackage; import com.microsoft.appcenter.reactnative.appcenter.AppCenterReactNativePackage; @@ -27,6 +29,10 @@ public boolean getUseDeveloperSupport() { protected List getPackages() { return Arrays.asList( new MainReactPackage(), + new VectorIconsPackage(), + new AppCenterReactNativeCrashesPackage(MainApplication.this, getResources().getString(R.string.appCenterCrashes_whenToSendCrashes)), + new AppCenterReactNativeAnalyticsPackage(MainApplication.this, getResources().getString(R.string.appCenterAnalytics_whenToEnableAnalytics)), + new AppCenterReactNativePackage(MainApplication.this), new AppCenterReactNativeCrashesPackage(MainApplication.this, getResources().getString(R.string.appCenterCrashes_whenToSendCrashes)), new AppCenterReactNativeAnalyticsPackage(MainApplication.this, getResources().getString(R.string.appCenterAnalytics_whenToEnableAnalytics)), new AppCenterReactNativePackage(MainApplication.this), diff --git a/android/settings.gradle b/android/settings.gradle index 0621f94..4635efb 100644 --- a/android/settings.gradle +++ b/android/settings.gradle @@ -1,4 +1,7 @@ rootProject.name = 'creaternwapp' +include ':react-native-vector-icons' +project(':react-native-vector-icons').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-vector-icons/android') + include ':appcenter-crashes' project(':appcenter-crashes').projectDir = new File(rootProject.projectDir, '../node_modules/appcenter-crashes/android') include ':appcenter-analytics' diff --git a/ios/Podfile b/ios/Podfile new file mode 100644 index 0000000..26b3007 --- /dev/null +++ b/ios/Podfile @@ -0,0 +1,34 @@ +# Uncomment the next line to define a global platform for your project +# platform :ios, '9.0' + +target 'creaternwapp' do + pod 'AppCenter/Crashes', '~> 1.9.0' + pod 'AppCenter/Analytics', '~> 1.9.0' + pod 'AppCenterReactNativeShared', '~> 1.8.1' + # Uncomment the next line if you're using Swift or would like to use dynamic frameworks + # use_frameworks! + + # Pods for creaternwapp + + + + platform :ios, '9.0' + target 'creaternwappTests' do + inherit! :search_paths + # Pods for testing + end + +end + +target 'creaternwapp-tvOS' do + # Uncomment the next line if you're using Swift or would like to use dynamic frameworks + # use_frameworks! + + # Pods for creaternwapp-tvOS + + target 'creaternwapp-tvOSTests' do + inherit! :search_paths + # Pods for testing + end + +end diff --git a/ios/Podfile.lock b/ios/Podfile.lock new file mode 100644 index 0000000..7ddc417 --- /dev/null +++ b/ios/Podfile.lock @@ -0,0 +1,26 @@ +PODS: + - AppCenter/Analytics (1.9.0): + - AppCenter/Core + - AppCenter/Core (1.9.0) + - AppCenter/Crashes (1.9.0): + - AppCenter/Core + - AppCenterReactNativeShared (1.8.1): + - AppCenter/Core (= 1.9.0) + +DEPENDENCIES: + - AppCenter/Analytics (~> 1.9.0) + - AppCenter/Crashes (~> 1.9.0) + - AppCenterReactNativeShared (~> 1.8.1) + +SPEC REPOS: + https://github.com/cocoapods/specs.git: + - AppCenter + - AppCenterReactNativeShared + +SPEC CHECKSUMS: + AppCenter: 3cf7b9387549e9703dab068793e404013e8c0cc1 + AppCenterReactNativeShared: 3d804f256b964e040d902d1a215d7866fedae55d + +PODFILE CHECKSUM: cf8d52448319c4375c5d82b7ec0267b0873b61b3 + +COCOAPODS: 1.5.3 diff --git a/ios/creaternwapp.xcodeproj/project.pbxproj b/ios/creaternwapp.xcodeproj/project.pbxproj index f4c0b46..bee1b4a 100644 --- a/ios/creaternwapp.xcodeproj/project.pbxproj +++ b/ios/creaternwapp.xcodeproj/project.pbxproj @@ -5,6 +5,7 @@ }; objectVersion = 46; objects = { + /* Begin PBXBuildFile section */ 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */; }; 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */; }; @@ -12,6 +13,8 @@ 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */; }; 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */; }; 00E356F31AD99517003FC87E /* creaternwappTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* creaternwappTests.m */; }; + 10107D0443F746F2BF6961C9 /* libAppCenterReactNativeAnalytics.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 0403480C351C4C3DA2A0A1BA /* libAppCenterReactNativeAnalytics.a */; }; + 12289880683846C489844FAE /* FontAwesome5_Solid.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 444898B1A0614C10AB85DF2D /* FontAwesome5_Solid.ttf */; }; 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 78C398B91ACF4ADC00677621 /* libRCTLinking.a */; }; 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */; }; 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */; }; @@ -21,6 +24,10 @@ 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; 146834051AC3E58100842450 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; + 184EB5B90A8E4B9DBD49CF0D /* Entypo.ttf in Resources */ = {isa = PBXBuildFile; fileRef = AC328630372140EBA1D741F0 /* Entypo.ttf */; }; + 25651C3BCDCF4A3E99F2E732 /* Octicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = D7634E3637384DA29A052160 /* Octicons.ttf */; }; + 28DF16BBB5FC4D369E18DEE6 /* libAppCenterReactNative.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6B9424B96B1042F4A05B6031 /* libAppCenterReactNative.a */; }; + 2BADE92A486647579E336C4E /* Ionicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 5376F1FFD3FD41A1A193520A /* Ionicons.ttf */; }; 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 */; }; @@ -34,29 +41,27 @@ 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2D16E6891FA4F8E400B85C8A /* libReact.a */; }; 2DCD954D1E0B4F2C00145EB5 /* creaternwappTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* creaternwappTests.m */; }; 2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3EA31DF850E9000B6D8A /* libReact.a */; }; + 35E345596B98470A80E17534 /* MaterialCommunityIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 7A378438788B477295A508C6 /* MaterialCommunityIcons.ttf */; }; + 36E50B908B1A445C8FF287BC /* MaterialIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 343D9425F95548C8B574EB3E /* MaterialIcons.ttf */; }; + 37021BAB2C634C0FB9C71181 /* EvilIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 72AA543796334F549938F27F /* EvilIcons.ttf */; }; + 4986659EFED5D18A2981D89D /* libPods-creaternwapp-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2D12A00D0EE22494FF782D33 /* libPods-creaternwapp-tvOS.a */; }; + 5AB116FE69D7197F2282E344 /* libPods-creaternwappTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 546BE8B56153A257DB2384DB /* libPods-creaternwappTests.a */; }; + 5CD97D1DBA6F4317AB6E118C /* AppCenter-Config.plist in Resources */ = {isa = PBXBuildFile; fileRef = C30B1E49028845D4B46BB282 /* AppCenter-Config.plist */; }; 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */; }; + 63061EA1E8BF49E18D96285D /* libRNVectorIcons.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 47249D7A40424E16BB7C1A7E /* libRNVectorIcons.a */; }; + 7B69E36CB58E425D86BC3D7F /* Feather.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 36FF73F9D2F0497D91FA2617 /* Feather.ttf */; }; 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; }; + 838A769D5052485DBAA3FB46 /* AntDesign.ttf in Resources */ = {isa = PBXBuildFile; fileRef = DCE7B5528FD04854B2222606 /* AntDesign.ttf */; }; + 8BD69166DBF642A891A95ED2 /* Zocial.ttf in Resources */ = {isa = PBXBuildFile; fileRef = FFE29D6A1FA341F6A913E18C /* Zocial.ttf */; }; + ABA394E9401E4203809AFA85 /* FontAwesome5_Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 50C69FFB58C34E9A9D4C6240 /* FontAwesome5_Regular.ttf */; }; ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */ = {isa = PBXBuildFile; fileRef = ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */; }; - 63061EA1E8BF49E18D96285D /* libRNVectorIcons.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 47249D7A40424E16BB7C1A7E /* libRNVectorIcons.a */; }; - 184EB5B90A8E4B9DBD49CF0D /* Entypo.ttf in Resources */ = {isa = PBXBuildFile; fileRef = AC328630372140EBA1D741F0 /* Entypo.ttf */; }; - 37021BAB2C634C0FB9C71181 /* EvilIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 72AA543796334F549938F27F /* EvilIcons.ttf */; }; + B09BBED9F8924720AC616843 /* FontAwesome5_Brands.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F426366F40DE4A5088B6F792 /* FontAwesome5_Brands.ttf */; }; + C0875D53A8554773B5416949 /* SimpleLineIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 9F5562D05FC74A779EE09DFD /* SimpleLineIcons.ttf */; }; + C207F6D49A1257343CA61DE0 /* libPods-creaternwapp.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 0AAC878D646A1920DEDC1F92 /* libPods-creaternwapp.a */; }; CC106ABA47D846FBA6ED450C /* FontAwesome.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 61B40143EE074262B9DCCAAF /* FontAwesome.ttf */; }; F2070E1DE7B0402DAA958AD5 /* Foundation.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 015070B0A98E4BFC9F6057DD /* Foundation.ttf */; }; - 2BADE92A486647579E336C4E /* Ionicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 5376F1FFD3FD41A1A193520A /* Ionicons.ttf */; }; - 35E345596B98470A80E17534 /* MaterialCommunityIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 7A378438788B477295A508C6 /* MaterialCommunityIcons.ttf */; }; - 36E50B908B1A445C8FF287BC /* MaterialIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 343D9425F95548C8B574EB3E /* MaterialIcons.ttf */; }; - 25651C3BCDCF4A3E99F2E732 /* Octicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = D7634E3637384DA29A052160 /* Octicons.ttf */; }; - C0875D53A8554773B5416949 /* SimpleLineIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 9F5562D05FC74A779EE09DFD /* SimpleLineIcons.ttf */; }; - 8BD69166DBF642A891A95ED2 /* Zocial.ttf in Resources */ = {isa = PBXBuildFile; fileRef = FFE29D6A1FA341F6A913E18C /* Zocial.ttf */; }; - 838A769D5052485DBAA3FB46 /* AntDesign.ttf in Resources */ = {isa = PBXBuildFile; fileRef = DCE7B5528FD04854B2222606 /* AntDesign.ttf */; }; - 7B69E36CB58E425D86BC3D7F /* Feather.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 36FF73F9D2F0497D91FA2617 /* Feather.ttf */; }; - B09BBED9F8924720AC616843 /* FontAwesome5_Brands.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F426366F40DE4A5088B6F792 /* FontAwesome5_Brands.ttf */; }; - ABA394E9401E4203809AFA85 /* FontAwesome5_Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 50C69FFB58C34E9A9D4C6240 /* FontAwesome5_Regular.ttf */; }; - 12289880683846C489844FAE /* FontAwesome5_Solid.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 444898B1A0614C10AB85DF2D /* FontAwesome5_Solid.ttf */; }; - 28DF16BBB5FC4D369E18DEE6 /* libAppCenterReactNative.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6B9424B96B1042F4A05B6031 /* libAppCenterReactNative.a */; }; - 5CD97D1DBA6F4317AB6E118C /* AppCenter-Config.plist in Resources */ = {isa = PBXBuildFile; fileRef = C30B1E49028845D4B46BB282 /* AppCenter-Config.plist */; }; - 10107D0443F746F2BF6961C9 /* libAppCenterReactNativeAnalytics.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 0403480C351C4C3DA2A0A1BA /* libAppCenterReactNativeAnalytics.a */; }; FC6424BD3AA54D54ACB339AA /* libAppCenterReactNativeCrashes.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CD9BD0B2FF34006995286F1 /* libAppCenterReactNativeCrashes.a */; }; + FEC82D5E73F4F1AD12979E9F /* libPods-creaternwapp-tvOSTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 7C4540BABEBE22468B6E20F6 /* libPods-creaternwapp-tvOSTests.a */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ @@ -326,6 +331,41 @@ remoteGlobalIDString = 58B5119B1A9E6C1200147676; remoteInfo = RCTText; }; + 987EB523216E6D3800DE5600 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 98261F2FA2EB41C281178F60 /* AppCenterReactNative.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C35AEC211EF91F9300931F0C; + remoteInfo = AppCenterReactNative; + }; + 987EB526216E6D3800DE5600 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = C64F9A70F9764E0BA1573BD3 /* AppCenterReactNativeCrashes.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 5419C2701D824AA700DDF3A1; + remoteInfo = AppCenterReactNativeCrashes; + }; + 987EB52A216E6D3800DE5600 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 931BBABB3191403282E94FF1 /* RNVectorIcons.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 5DBEB1501B18CEA900B34395; + remoteInfo = RNVectorIcons; + }; + 987EB52C216E6D3800DE5600 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 931BBABB3191403282E94FF1 /* RNVectorIcons.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = A39873CE1EA65EE60051E01A; + remoteInfo = "RNVectorIcons-tvOS"; + }; + 987EB531216E6D3A00DE5600 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 5454ACB936584036984C88E6 /* AppCenterReactNativeAnalytics.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 548694001D8384E600E6685A; + remoteInfo = AppCenterReactNativeAnalytics; + }; ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; @@ -345,6 +385,12 @@ 00E356EE1AD99517003FC87E /* creaternwappTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = creaternwappTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 00E356F21AD99517003FC87E /* creaternwappTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = creaternwappTests.m; sourceTree = ""; }; + 015070B0A98E4BFC9F6057DD /* 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 = ""; }; + 020BD6C88E1767D39FB617C0 /* Pods-creaternwapp-tvOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-creaternwapp-tvOS.debug.xcconfig"; path = "Pods/Target Support Files/Pods-creaternwapp-tvOS/Pods-creaternwapp-tvOS.debug.xcconfig"; sourceTree = ""; }; + 0403480C351C4C3DA2A0A1BA /* libAppCenterReactNativeAnalytics.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libAppCenterReactNativeAnalytics.a; sourceTree = ""; }; + 0AAC878D646A1920DEDC1F92 /* libPods-creaternwapp.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-creaternwapp.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 109C35AF24A7C0D49B15653D /* Pods-creaternwappTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-creaternwappTests.release.xcconfig"; path = "Pods/Target Support Files/Pods-creaternwappTests/Pods-creaternwappTests.release.xcconfig"; sourceTree = ""; }; + 11758E98F817A06733BA37B9 /* Pods-creaternwapp-tvOSTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-creaternwapp-tvOSTests.release.xcconfig"; path = "Pods/Target Support Files/Pods-creaternwapp-tvOSTests/Pods-creaternwapp-tvOSTests.release.xcconfig"; sourceTree = ""; }; 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = ""; }; 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = ""; }; 13B07F961A680F5B00A75B9A /* creaternwapp.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = creaternwapp.app; sourceTree = BUILT_PRODUCTS_DIR; }; @@ -355,37 +401,43 @@ 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = creaternwapp/Info.plist; sourceTree = ""; }; 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = creaternwapp/main.m; sourceTree = ""; }; 146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = ""; }; + 16AFFBC23D294705C5525642 /* Pods-creaternwappTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-creaternwappTests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-creaternwappTests/Pods-creaternwappTests.debug.xcconfig"; sourceTree = ""; }; 2D02E47B1E0B4A5D006451C7 /* creaternwapp-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "creaternwapp-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 2D02E4901E0B4A5D006451C7 /* creaternwapp-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "creaternwapp-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; + 2D12A00D0EE22494FF782D33 /* libPods-creaternwapp-tvOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-creaternwapp-tvOS.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 2D16E6891FA4F8E400B85C8A /* libReact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libReact.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 31956300BC0FCB1CA465D676 /* Pods-creaternwapp.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-creaternwapp.release.xcconfig"; path = "Pods/Target Support Files/Pods-creaternwapp/Pods-creaternwapp.release.xcconfig"; sourceTree = ""; }; + 343D9425F95548C8B574EB3E /* 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 = ""; }; + 36FF73F9D2F0497D91FA2617 /* 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 = ""; }; + 444898B1A0614C10AB85DF2D /* 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 = ""; }; + 47249D7A40424E16BB7C1A7E /* libRNVectorIcons.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNVectorIcons.a; sourceTree = ""; }; + 478F1734D32AEA0FE0ED0AFB /* Pods-creaternwapp.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-creaternwapp.debug.xcconfig"; path = "Pods/Target Support Files/Pods-creaternwapp/Pods-creaternwapp.debug.xcconfig"; sourceTree = ""; }; + 50C69FFB58C34E9A9D4C6240 /* 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 = ""; }; + 5376F1FFD3FD41A1A193520A /* 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 = ""; }; + 5454ACB936584036984C88E6 /* AppCenterReactNativeAnalytics.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = AppCenterReactNativeAnalytics.xcodeproj; path = "../node_modules/appcenter-analytics/ios/AppCenterReactNativeAnalytics.xcodeproj"; sourceTree = ""; }; + 546BE8B56153A257DB2384DB /* libPods-creaternwappTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-creaternwappTests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = ""; }; + 61B40143EE074262B9DCCAAF /* 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 = ""; }; + 6B9424B96B1042F4A05B6031 /* libAppCenterReactNative.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libAppCenterReactNative.a; sourceTree = ""; }; + 6CD9BD0B2FF34006995286F1 /* libAppCenterReactNativeCrashes.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libAppCenterReactNativeCrashes.a; sourceTree = ""; }; + 72AA543796334F549938F27F /* 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 = ""; }; 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = ""; }; + 7A378438788B477295A508C6 /* 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 = ""; }; + 7C4540BABEBE22468B6E20F6 /* libPods-creaternwapp-tvOSTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-creaternwapp-tvOSTests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = ""; }; + 931BBABB3191403282E94FF1 /* 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 = ""; }; + 98261F2FA2EB41C281178F60 /* AppCenterReactNative.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = AppCenterReactNative.xcodeproj; path = ../node_modules/appcenter/ios/AppCenterReactNative.xcodeproj; sourceTree = ""; }; + 9A4E0AB160D3331150285E1A /* Pods-creaternwapp-tvOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-creaternwapp-tvOS.release.xcconfig"; path = "Pods/Target Support Files/Pods-creaternwapp-tvOS/Pods-creaternwapp-tvOS.release.xcconfig"; sourceTree = ""; }; + 9F5562D05FC74A779EE09DFD /* 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 = ""; }; + AC328630372140EBA1D741F0 /* 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 = ""; }; ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTBlob.xcodeproj; path = "../node_modules/react-native/Libraries/Blob/RCTBlob.xcodeproj"; sourceTree = ""; }; - 931BBABB3191403282E94FF1 /* RNVectorIcons.xcodeproj */ = {isa = PBXFileReference; name = "RNVectorIcons.xcodeproj"; path = "../node_modules/react-native-vector-icons/RNVectorIcons.xcodeproj"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = wrapper.pb-project; explicitFileType = undefined; includeInIndex = 0; }; - 47249D7A40424E16BB7C1A7E /* libRNVectorIcons.a */ = {isa = PBXFileReference; name = "libRNVectorIcons.a"; path = "libRNVectorIcons.a"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = archive.ar; explicitFileType = undefined; includeInIndex = 0; }; - AC328630372140EBA1D741F0 /* Entypo.ttf */ = {isa = PBXFileReference; name = "Entypo.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Entypo.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; - 72AA543796334F549938F27F /* EvilIcons.ttf */ = {isa = PBXFileReference; name = "EvilIcons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/EvilIcons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; - 61B40143EE074262B9DCCAAF /* FontAwesome.ttf */ = {isa = PBXFileReference; name = "FontAwesome.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; - 015070B0A98E4BFC9F6057DD /* Foundation.ttf */ = {isa = PBXFileReference; name = "Foundation.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Foundation.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; - 5376F1FFD3FD41A1A193520A /* Ionicons.ttf */ = {isa = PBXFileReference; name = "Ionicons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Ionicons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; - 7A378438788B477295A508C6 /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; name = "MaterialCommunityIcons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/MaterialCommunityIcons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; - 343D9425F95548C8B574EB3E /* MaterialIcons.ttf */ = {isa = PBXFileReference; name = "MaterialIcons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/MaterialIcons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; - D7634E3637384DA29A052160 /* Octicons.ttf */ = {isa = PBXFileReference; name = "Octicons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Octicons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; - 9F5562D05FC74A779EE09DFD /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; name = "SimpleLineIcons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; - FFE29D6A1FA341F6A913E18C /* Zocial.ttf */ = {isa = PBXFileReference; name = "Zocial.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Zocial.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; - DCE7B5528FD04854B2222606 /* AntDesign.ttf */ = {isa = PBXFileReference; name = "AntDesign.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/AntDesign.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; - 36FF73F9D2F0497D91FA2617 /* Feather.ttf */ = {isa = PBXFileReference; name = "Feather.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Feather.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; - F426366F40DE4A5088B6F792 /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; name = "FontAwesome5_Brands.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Brands.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; - 50C69FFB58C34E9A9D4C6240 /* FontAwesome5_Regular.ttf */ = {isa = PBXFileReference; name = "FontAwesome5_Regular.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Regular.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; - 444898B1A0614C10AB85DF2D /* FontAwesome5_Solid.ttf */ = {isa = PBXFileReference; name = "FontAwesome5_Solid.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Solid.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; - 98261F2FA2EB41C281178F60 /* AppCenterReactNative.xcodeproj */ = {isa = PBXFileReference; name = "AppCenterReactNative.xcodeproj"; path = "../node_modules/appcenter/ios/AppCenterReactNative.xcodeproj"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = wrapper.pb-project; explicitFileType = undefined; includeInIndex = 0; }; - 6B9424B96B1042F4A05B6031 /* libAppCenterReactNative.a */ = {isa = PBXFileReference; name = "libAppCenterReactNative.a"; path = "libAppCenterReactNative.a"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = archive.ar; explicitFileType = undefined; includeInIndex = 0; }; - C30B1E49028845D4B46BB282 /* AppCenter-Config.plist */ = {isa = PBXFileReference; name = "AppCenter-Config.plist"; path = "creaternwapp/AppCenter-Config.plist"; sourceTree = ""; fileEncoding = 4; lastKnownFileType = text.plist.xml; explicitFileType = undefined; includeInIndex = 0; }; - 5454ACB936584036984C88E6 /* AppCenterReactNativeAnalytics.xcodeproj */ = {isa = PBXFileReference; name = "AppCenterReactNativeAnalytics.xcodeproj"; path = "../node_modules/appcenter-analytics/ios/AppCenterReactNativeAnalytics.xcodeproj"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = wrapper.pb-project; explicitFileType = undefined; includeInIndex = 0; }; - 0403480C351C4C3DA2A0A1BA /* libAppCenterReactNativeAnalytics.a */ = {isa = PBXFileReference; name = "libAppCenterReactNativeAnalytics.a"; path = "libAppCenterReactNativeAnalytics.a"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = archive.ar; explicitFileType = undefined; includeInIndex = 0; }; - C64F9A70F9764E0BA1573BD3 /* AppCenterReactNativeCrashes.xcodeproj */ = {isa = PBXFileReference; name = "AppCenterReactNativeCrashes.xcodeproj"; path = "../node_modules/appcenter-crashes/ios/AppCenterReactNativeCrashes.xcodeproj"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = wrapper.pb-project; explicitFileType = undefined; includeInIndex = 0; }; - 6CD9BD0B2FF34006995286F1 /* libAppCenterReactNativeCrashes.a */ = {isa = PBXFileReference; name = "libAppCenterReactNativeCrashes.a"; path = "libAppCenterReactNativeCrashes.a"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = archive.ar; explicitFileType = undefined; includeInIndex = 0; }; + C30B1E49028845D4B46BB282 /* AppCenter-Config.plist */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 4; includeInIndex = 0; lastKnownFileType = text.plist.xml; name = "AppCenter-Config.plist"; path = "creaternwapp/AppCenter-Config.plist"; sourceTree = ""; }; + C64F9A70F9764E0BA1573BD3 /* AppCenterReactNativeCrashes.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = AppCenterReactNativeCrashes.xcodeproj; path = "../node_modules/appcenter-crashes/ios/AppCenterReactNativeCrashes.xcodeproj"; sourceTree = ""; }; + D7634E3637384DA29A052160 /* 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 = ""; }; + DCE7B5528FD04854B2222606 /* 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 = ""; }; + DF638253F3FF85C3EDC87B32 /* Pods-creaternwapp-tvOSTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-creaternwapp-tvOSTests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-creaternwapp-tvOSTests/Pods-creaternwapp-tvOSTests.debug.xcconfig"; sourceTree = ""; }; + F426366F40DE4A5088B6F792 /* 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 = ""; }; + FFE29D6A1FA341F6A913E18C /* 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 = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -394,6 +446,7 @@ buildActionMask = 2147483647; files = ( 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */, + 5AB116FE69D7197F2282E344 /* libPods-creaternwappTests.a in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -418,6 +471,7 @@ 28DF16BBB5FC4D369E18DEE6 /* libAppCenterReactNative.a in Frameworks */, 10107D0443F746F2BF6961C9 /* libAppCenterReactNativeAnalytics.a in Frameworks */, FC6424BD3AA54D54ACB339AA /* libAppCenterReactNativeCrashes.a in Frameworks */, + C207F6D49A1257343CA61DE0 /* libPods-creaternwapp.a in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -433,6 +487,7 @@ 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */, 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */, 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */, + 4986659EFED5D18A2981D89D /* libPods-creaternwapp-tvOS.a in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -441,6 +496,7 @@ buildActionMask = 2147483647; files = ( 2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */, + FEC82D5E73F4F1AD12979E9F /* libPods-creaternwapp-tvOSTests.a in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -567,6 +623,10 @@ isa = PBXGroup; children = ( 2D16E6891FA4F8E400B85C8A /* libReact.a */, + 0AAC878D646A1920DEDC1F92 /* libPods-creaternwapp.a */, + 2D12A00D0EE22494FF782D33 /* libPods-creaternwapp-tvOS.a */, + 7C4540BABEBE22468B6E20F6 /* libPods-creaternwapp-tvOSTests.a */, + 546BE8B56153A257DB2384DB /* libPods-creaternwappTests.a */, ); name = Frameworks; sourceTree = ""; @@ -589,6 +649,28 @@ name = Products; sourceTree = ""; }; + 7A92BD8385DB4337BAE371CE /* Resources */ = { + isa = PBXGroup; + children = ( + AC328630372140EBA1D741F0 /* Entypo.ttf */, + 72AA543796334F549938F27F /* EvilIcons.ttf */, + 61B40143EE074262B9DCCAAF /* FontAwesome.ttf */, + 015070B0A98E4BFC9F6057DD /* Foundation.ttf */, + 5376F1FFD3FD41A1A193520A /* Ionicons.ttf */, + 7A378438788B477295A508C6 /* MaterialCommunityIcons.ttf */, + 343D9425F95548C8B574EB3E /* MaterialIcons.ttf */, + D7634E3637384DA29A052160 /* Octicons.ttf */, + 9F5562D05FC74A779EE09DFD /* SimpleLineIcons.ttf */, + FFE29D6A1FA341F6A913E18C /* Zocial.ttf */, + DCE7B5528FD04854B2222606 /* AntDesign.ttf */, + 36FF73F9D2F0497D91FA2617 /* Feather.ttf */, + F426366F40DE4A5088B6F792 /* FontAwesome5_Brands.ttf */, + 50C69FFB58C34E9A9D4C6240 /* FontAwesome5_Regular.ttf */, + 444898B1A0614C10AB85DF2D /* FontAwesome5_Solid.ttf */, + ); + name = Resources; + sourceTree = ""; + }; 832341AE1AAA6A7D00B99B32 /* Libraries */ = { isa = PBXGroup; children = ( @@ -631,6 +713,8 @@ 2D16E6871FA4F8E400B85C8A /* Frameworks */, 7A92BD8385DB4337BAE371CE /* Resources */, C30B1E49028845D4B46BB282 /* AppCenter-Config.plist */, + 987EB4F6216E6D3600DE5600 /* Recovered References */, + A6D9DE3028A02166A9F996A5 /* Pods */, ); indentWidth = 2; sourceTree = ""; @@ -648,37 +732,73 @@ name = Products; sourceTree = ""; }; - ADBDB9201DFEBF0600ED6528 /* Products */ = { + 987EB4F6216E6D3600DE5600 /* Recovered References */ = { isa = PBXGroup; children = ( - ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */, - 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */, + 47249D7A40424E16BB7C1A7E /* libRNVectorIcons.a */, + 6B9424B96B1042F4A05B6031 /* libAppCenterReactNative.a */, + 0403480C351C4C3DA2A0A1BA /* libAppCenterReactNativeAnalytics.a */, + 6CD9BD0B2FF34006995286F1 /* libAppCenterReactNativeCrashes.a */, + ); + name = "Recovered References"; + sourceTree = ""; + }; + 987EB51C216E6D3800DE5600 /* Products */ = { + isa = PBXGroup; + children = ( + 987EB527216E6D3800DE5600 /* libAppCenterReactNativeCrashes.a */, ); name = Products; sourceTree = ""; }; - 7A92BD8385DB4337BAE371CE /* Resources */ = { - isa = "PBXGroup"; + 987EB51E216E6D3800DE5600 /* Products */ = { + isa = PBXGroup; children = ( - AC328630372140EBA1D741F0 /* Entypo.ttf */, - 72AA543796334F549938F27F /* EvilIcons.ttf */, - 61B40143EE074262B9DCCAAF /* FontAwesome.ttf */, - 015070B0A98E4BFC9F6057DD /* Foundation.ttf */, - 5376F1FFD3FD41A1A193520A /* Ionicons.ttf */, - 7A378438788B477295A508C6 /* MaterialCommunityIcons.ttf */, - 343D9425F95548C8B574EB3E /* MaterialIcons.ttf */, - D7634E3637384DA29A052160 /* Octicons.ttf */, - 9F5562D05FC74A779EE09DFD /* SimpleLineIcons.ttf */, - FFE29D6A1FA341F6A913E18C /* Zocial.ttf */, - DCE7B5528FD04854B2222606 /* AntDesign.ttf */, - 36FF73F9D2F0497D91FA2617 /* Feather.ttf */, - F426366F40DE4A5088B6F792 /* FontAwesome5_Brands.ttf */, - 50C69FFB58C34E9A9D4C6240 /* FontAwesome5_Regular.ttf */, - 444898B1A0614C10AB85DF2D /* FontAwesome5_Solid.ttf */, + 987EB52B216E6D3800DE5600 /* libRNVectorIcons.a */, + 987EB52D216E6D3800DE5600 /* libRNVectorIcons-tvOS.a */, ); - name = Resources; + name = Products; + sourceTree = ""; + }; + 987EB520216E6D3800DE5600 /* Products */ = { + isa = PBXGroup; + children = ( + 987EB524216E6D3800DE5600 /* libAppCenterReactNative.a */, + ); + name = Products; + sourceTree = ""; + }; + 987EB52E216E6D3800DE5600 /* Products */ = { + isa = PBXGroup; + children = ( + 987EB532216E6D3A00DE5600 /* libAppCenterReactNativeAnalytics.a */, + ); + name = Products; + sourceTree = ""; + }; + A6D9DE3028A02166A9F996A5 /* Pods */ = { + isa = PBXGroup; + children = ( + 478F1734D32AEA0FE0ED0AFB /* Pods-creaternwapp.debug.xcconfig */, + 31956300BC0FCB1CA465D676 /* Pods-creaternwapp.release.xcconfig */, + 020BD6C88E1767D39FB617C0 /* Pods-creaternwapp-tvOS.debug.xcconfig */, + 9A4E0AB160D3331150285E1A /* Pods-creaternwapp-tvOS.release.xcconfig */, + DF638253F3FF85C3EDC87B32 /* Pods-creaternwapp-tvOSTests.debug.xcconfig */, + 11758E98F817A06733BA37B9 /* Pods-creaternwapp-tvOSTests.release.xcconfig */, + 16AFFBC23D294705C5525642 /* Pods-creaternwappTests.debug.xcconfig */, + 109C35AF24A7C0D49B15653D /* Pods-creaternwappTests.release.xcconfig */, + ); + name = Pods; + sourceTree = ""; + }; + ADBDB9201DFEBF0600ED6528 /* Products */ = { + isa = PBXGroup; + children = ( + ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */, + 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */, + ); + name = Products; sourceTree = ""; - path = ""; }; /* End PBXGroup section */ @@ -687,6 +807,7 @@ isa = PBXNativeTarget; buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "creaternwappTests" */; buildPhases = ( + 1C1BE86D332B292AD90BF9D1 /* [CP] Check Pods Manifest.lock */, 00E356EA1AD99517003FC87E /* Sources */, 00E356EB1AD99517003FC87E /* Frameworks */, 00E356EC1AD99517003FC87E /* Resources */, @@ -705,6 +826,7 @@ isa = PBXNativeTarget; buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "creaternwapp" */; buildPhases = ( + BA07B23CD5E096FDA8FC05E4 /* [CP] Check Pods Manifest.lock */, 13B07F871A680F5B00A75B9A /* Sources */, 13B07F8C1A680F5B00A75B9A /* Frameworks */, 13B07F8E1A680F5B00A75B9A /* Resources */, @@ -723,6 +845,7 @@ isa = PBXNativeTarget; buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "creaternwapp-tvOS" */; buildPhases = ( + 50E540AF16CCDC677CCF0BC1 /* [CP] Check Pods Manifest.lock */, 2D02E4771E0B4A5D006451C7 /* Sources */, 2D02E4781E0B4A5D006451C7 /* Frameworks */, 2D02E4791E0B4A5D006451C7 /* Resources */, @@ -741,6 +864,7 @@ isa = PBXNativeTarget; buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "creaternwapp-tvOSTests" */; buildPhases = ( + 2C57FE3E02C28743E4150837 /* [CP] Check Pods Manifest.lock */, 2D02E48C1E0B4A5D006451C7 /* Sources */, 2D02E48D1E0B4A5D006451C7 /* Frameworks */, 2D02E48E1E0B4A5D006451C7 /* Resources */, @@ -791,6 +915,18 @@ productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */; projectDirPath = ""; projectReferences = ( + { + ProductGroup = 987EB520216E6D3800DE5600 /* Products */; + ProjectRef = 98261F2FA2EB41C281178F60 /* AppCenterReactNative.xcodeproj */; + }, + { + ProductGroup = 987EB52E216E6D3800DE5600 /* Products */; + ProjectRef = 5454ACB936584036984C88E6 /* AppCenterReactNativeAnalytics.xcodeproj */; + }, + { + ProductGroup = 987EB51C216E6D3800DE5600 /* Products */; + ProjectRef = C64F9A70F9764E0BA1573BD3 /* AppCenterReactNativeCrashes.xcodeproj */; + }, { ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */; ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; @@ -839,6 +975,10 @@ ProductGroup = 146834001AC3E56700842450 /* Products */; ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */; }, + { + ProductGroup = 987EB51E216E6D3800DE5600 /* Products */; + ProjectRef = 931BBABB3191403282E94FF1 /* RNVectorIcons.xcodeproj */; + }, ); projectRoot = ""; targets = ( @@ -1103,6 +1243,41 @@ remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; + 987EB524216E6D3800DE5600 /* libAppCenterReactNative.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = libAppCenterReactNative.a; + remoteRef = 987EB523216E6D3800DE5600 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 987EB527216E6D3800DE5600 /* libAppCenterReactNativeCrashes.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = libAppCenterReactNativeCrashes.a; + remoteRef = 987EB526216E6D3800DE5600 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 987EB52B216E6D3800DE5600 /* libRNVectorIcons.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = libRNVectorIcons.a; + remoteRef = 987EB52A216E6D3800DE5600 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 987EB52D216E6D3800DE5600 /* libRNVectorIcons-tvOS.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = "libRNVectorIcons-tvOS.a"; + remoteRef = 987EB52C216E6D3800DE5600 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 987EB532216E6D3A00DE5600 /* libAppCenterReactNativeAnalytics.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = libAppCenterReactNativeAnalytics.a; + remoteRef = 987EB531216E6D3A00DE5600 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; @@ -1177,6 +1352,50 @@ shellPath = /bin/sh; shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; }; + 1C1BE86D332B292AD90BF9D1 /* [CP] Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", + "${PODS_ROOT}/Manifest.lock", + ); + name = "[CP] Check Pods Manifest.lock"; + outputFileListPaths = ( + ); + outputPaths = ( + "$(DERIVED_FILE_DIR)/Pods-creaternwappTests-checkManifestLockResult.txt", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; + showEnvVarsInLog = 0; + }; + 2C57FE3E02C28743E4150837 /* [CP] Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", + "${PODS_ROOT}/Manifest.lock", + ); + name = "[CP] Check Pods Manifest.lock"; + outputFileListPaths = ( + ); + outputPaths = ( + "$(DERIVED_FILE_DIR)/Pods-creaternwapp-tvOSTests-checkManifestLockResult.txt", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; + showEnvVarsInLog = 0; + }; 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -1191,6 +1410,50 @@ shellPath = /bin/sh; shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; }; + 50E540AF16CCDC677CCF0BC1 /* [CP] Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", + "${PODS_ROOT}/Manifest.lock", + ); + name = "[CP] Check Pods Manifest.lock"; + outputFileListPaths = ( + ); + outputPaths = ( + "$(DERIVED_FILE_DIR)/Pods-creaternwapp-tvOS-checkManifestLockResult.txt", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; + showEnvVarsInLog = 0; + }; + BA07B23CD5E096FDA8FC05E4 /* [CP] Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", + "${PODS_ROOT}/Manifest.lock", + ); + name = "[CP] Check Pods Manifest.lock"; + outputFileListPaths = ( + ); + outputPaths = ( + "$(DERIVED_FILE_DIR)/Pods-creaternwapp-checkManifestLockResult.txt", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; + showEnvVarsInLog = 0; + }; /* End PBXShellScriptBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ @@ -1258,21 +1521,23 @@ /* Begin XCBuildConfiguration section */ 00E356F61AD99517003FC87E /* Debug */ = { isa = XCBuildConfiguration; + baseConfigurationReference = 16AFFBC23D294705C5525642 /* Pods-creaternwappTests.debug.xcconfig */; buildSettings = { BUNDLE_LOADER = "$(TEST_HOST)"; GCC_PREPROCESSOR_DEFINITIONS = ( "DEBUG=1", "$(inherited)", ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)..\node_modules\neact-native-vector-iconsRNVectorIconsManager", + "$(SRCROOT)..\node_modules\appcenteriosAppCenterReactNative", + "$(SRCROOT)..\node_modules\appcenter-analyticsiosAppCenterReactNativeAnalytics", + "$(SRCROOT)..\node_modules\appcenter-crashesiosAppCenterReactNativeCrashes", + ); INFOPLIST_FILE = creaternwappTests/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 8.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - OTHER_LDFLAGS = ( - "-ObjC", - "-lc++", - ); - PRODUCT_NAME = "$(TARGET_NAME)"; - TEST_HOST = "$(BUILT_PRODUCTS_DIR)/creaternwapp.app/creaternwapp"; LIBRARY_SEARCH_PATHS = ( "$(inherited)", "\"$(SRCROOT)/$(TARGET_NAME)\"", @@ -1280,30 +1545,31 @@ "\"$(SRCROOT)/$(TARGET_NAME)\"", "\"$(SRCROOT)/$(TARGET_NAME)\"", ); - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(SRCROOT)\..\node_modules\react-native-vector-icons\RNVectorIconsManager", - "$(SRCROOT)\..\node_modules\appcenter\ios\AppCenterReactNative", - "$(SRCROOT)\..\node_modules\appcenter-analytics\ios\AppCenterReactNativeAnalytics", - "$(SRCROOT)\..\node_modules\appcenter-crashes\ios\AppCenterReactNativeCrashes", + OTHER_LDFLAGS = ( + "-ObjC", + "-lc++", ); + PRODUCT_NAME = "$(TARGET_NAME)"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/creaternwapp.app/creaternwapp"; }; name = Debug; }; 00E356F71AD99517003FC87E /* Release */ = { isa = XCBuildConfiguration; + baseConfigurationReference = 109C35AF24A7C0D49B15653D /* Pods-creaternwappTests.release.xcconfig */; buildSettings = { BUNDLE_LOADER = "$(TEST_HOST)"; COPY_PHASE_STRIP = NO; + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)..\node_modules\neact-native-vector-iconsRNVectorIconsManager", + "$(SRCROOT)..\node_modules\appcenteriosAppCenterReactNative", + "$(SRCROOT)..\node_modules\appcenter-analyticsiosAppCenterReactNativeAnalytics", + "$(SRCROOT)..\node_modules\appcenter-crashesiosAppCenterReactNativeCrashes", + ); INFOPLIST_FILE = creaternwappTests/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 8.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - OTHER_LDFLAGS = ( - "-ObjC", - "-lc++", - ); - PRODUCT_NAME = "$(TARGET_NAME)"; - TEST_HOST = "$(BUILT_PRODUCTS_DIR)/creaternwapp.app/creaternwapp"; LIBRARY_SEARCH_PATHS = ( "$(inherited)", "\"$(SRCROOT)/$(TARGET_NAME)\"", @@ -1311,23 +1577,30 @@ "\"$(SRCROOT)/$(TARGET_NAME)\"", "\"$(SRCROOT)/$(TARGET_NAME)\"", ); - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(SRCROOT)\..\node_modules\react-native-vector-icons\RNVectorIconsManager", - "$(SRCROOT)\..\node_modules\appcenter\ios\AppCenterReactNative", - "$(SRCROOT)\..\node_modules\appcenter-analytics\ios\AppCenterReactNativeAnalytics", - "$(SRCROOT)\..\node_modules\appcenter-crashes\ios\AppCenterReactNativeCrashes", + OTHER_LDFLAGS = ( + "-ObjC", + "-lc++", ); + PRODUCT_NAME = "$(TARGET_NAME)"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/creaternwapp.app/creaternwapp"; }; name = Release; }; 13B07F941A680F5B00A75B9A /* Debug */ = { isa = XCBuildConfiguration; + baseConfigurationReference = 478F1734D32AEA0FE0ED0AFB /* Pods-creaternwapp.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CURRENT_PROJECT_VERSION = 1; DEAD_CODE_STRIPPING = NO; DEVELOPMENT_TEAM = ""; + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)..\node_modules\neact-native-vector-iconsRNVectorIconsManager", + "$(SRCROOT)..\node_modules\appcenteriosAppCenterReactNative", + "$(SRCROOT)..\node_modules\appcenter-analyticsiosAppCenterReactNativeAnalytics", + "$(SRCROOT)..\node_modules\appcenter-crashesiosAppCenterReactNativeCrashes", + ); INFOPLIST_FILE = creaternwapp/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 8.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; @@ -1339,22 +1612,23 @@ PRODUCT_NAME = creaternwapp; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(SRCROOT)\..\node_modules\react-native-vector-icons\RNVectorIconsManager", - "$(SRCROOT)\..\node_modules\appcenter\ios\AppCenterReactNative", - "$(SRCROOT)\..\node_modules\appcenter-analytics\ios\AppCenterReactNativeAnalytics", - "$(SRCROOT)\..\node_modules\appcenter-crashes\ios\AppCenterReactNativeCrashes", - ); }; name = Debug; }; 13B07F951A680F5B00A75B9A /* Release */ = { isa = XCBuildConfiguration; + baseConfigurationReference = 31956300BC0FCB1CA465D676 /* Pods-creaternwapp.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CURRENT_PROJECT_VERSION = 1; DEVELOPMENT_TEAM = ""; + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)..\node_modules\neact-native-vector-iconsRNVectorIconsManager", + "$(SRCROOT)..\node_modules\appcenteriosAppCenterReactNative", + "$(SRCROOT)..\node_modules\appcenter-analyticsiosAppCenterReactNativeAnalytics", + "$(SRCROOT)..\node_modules\appcenter-crashesiosAppCenterReactNativeCrashes", + ); INFOPLIST_FILE = creaternwapp/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 8.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; @@ -1366,18 +1640,12 @@ PRODUCT_NAME = creaternwapp; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(SRCROOT)\..\node_modules\react-native-vector-icons\RNVectorIconsManager", - "$(SRCROOT)\..\node_modules\appcenter\ios\AppCenterReactNative", - "$(SRCROOT)\..\node_modules\appcenter-analytics\ios\AppCenterReactNativeAnalytics", - "$(SRCROOT)\..\node_modules\appcenter-crashes\ios\AppCenterReactNativeCrashes", - ); }; name = Release; }; 2D02E4971E0B4A5E006451C7 /* Debug */ = { isa = XCBuildConfiguration; + baseConfigurationReference = 020BD6C88E1767D39FB617C0 /* Pods-creaternwapp-tvOS.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; @@ -1388,8 +1656,22 @@ DEBUG_INFORMATION_FORMAT = dwarf; ENABLE_TESTABILITY = YES; GCC_NO_COMMON_BLOCKS = YES; + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)..\node_modules\neact-native-vector-iconsRNVectorIconsManager", + "$(SRCROOT)..\node_modules\appcenteriosAppCenterReactNative", + "$(SRCROOT)..\node_modules\appcenter-analyticsiosAppCenterReactNativeAnalytics", + "$(SRCROOT)..\node_modules\appcenter-crashesiosAppCenterReactNativeCrashes", + ); INFOPLIST_FILE = "creaternwapp-tvOS/Info.plist"; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + LIBRARY_SEARCH_PATHS = ( + "$(inherited)", + "\"$(SRCROOT)/$(TARGET_NAME)\"", + "\"$(SRCROOT)/$(TARGET_NAME)\"", + "\"$(SRCROOT)/$(TARGET_NAME)\"", + "\"$(SRCROOT)/$(TARGET_NAME)\"", + ); OTHER_LDFLAGS = ( "-ObjC", "-lc++", @@ -1399,25 +1681,12 @@ SDKROOT = appletvos; TARGETED_DEVICE_FAMILY = 3; TVOS_DEPLOYMENT_TARGET = 9.2; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "\"$(SRCROOT)/$(TARGET_NAME)\"", - "\"$(SRCROOT)/$(TARGET_NAME)\"", - "\"$(SRCROOT)/$(TARGET_NAME)\"", - "\"$(SRCROOT)/$(TARGET_NAME)\"", - ); - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(SRCROOT)\..\node_modules\react-native-vector-icons\RNVectorIconsManager", - "$(SRCROOT)\..\node_modules\appcenter\ios\AppCenterReactNative", - "$(SRCROOT)\..\node_modules\appcenter-analytics\ios\AppCenterReactNativeAnalytics", - "$(SRCROOT)\..\node_modules\appcenter-crashes\ios\AppCenterReactNativeCrashes", - ); }; name = Debug; }; 2D02E4981E0B4A5E006451C7 /* Release */ = { isa = XCBuildConfiguration; + baseConfigurationReference = 9A4E0AB160D3331150285E1A /* Pods-creaternwapp-tvOS.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; @@ -1428,8 +1697,22 @@ COPY_PHASE_STRIP = NO; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; GCC_NO_COMMON_BLOCKS = YES; + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)..\node_modules\neact-native-vector-iconsRNVectorIconsManager", + "$(SRCROOT)..\node_modules\appcenteriosAppCenterReactNative", + "$(SRCROOT)..\node_modules\appcenter-analyticsiosAppCenterReactNativeAnalytics", + "$(SRCROOT)..\node_modules\appcenter-crashesiosAppCenterReactNativeCrashes", + ); INFOPLIST_FILE = "creaternwapp-tvOS/Info.plist"; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + LIBRARY_SEARCH_PATHS = ( + "$(inherited)", + "\"$(SRCROOT)/$(TARGET_NAME)\"", + "\"$(SRCROOT)/$(TARGET_NAME)\"", + "\"$(SRCROOT)/$(TARGET_NAME)\"", + "\"$(SRCROOT)/$(TARGET_NAME)\"", + ); OTHER_LDFLAGS = ( "-ObjC", "-lc++", @@ -1439,25 +1722,12 @@ SDKROOT = appletvos; TARGETED_DEVICE_FAMILY = 3; TVOS_DEPLOYMENT_TARGET = 9.2; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "\"$(SRCROOT)/$(TARGET_NAME)\"", - "\"$(SRCROOT)/$(TARGET_NAME)\"", - "\"$(SRCROOT)/$(TARGET_NAME)\"", - "\"$(SRCROOT)/$(TARGET_NAME)\"", - ); - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(SRCROOT)\..\node_modules\react-native-vector-icons\RNVectorIconsManager", - "$(SRCROOT)\..\node_modules\appcenter\ios\AppCenterReactNative", - "$(SRCROOT)\..\node_modules\appcenter-analytics\ios\AppCenterReactNativeAnalytics", - "$(SRCROOT)\..\node_modules\appcenter-crashes\ios\AppCenterReactNativeCrashes", - ); }; name = Release; }; 2D02E4991E0B4A5E006451C7 /* Debug */ = { isa = XCBuildConfiguration; + baseConfigurationReference = DF638253F3FF85C3EDC87B32 /* Pods-creaternwapp-tvOSTests.debug.xcconfig */; buildSettings = { BUNDLE_LOADER = "$(TEST_HOST)"; CLANG_ANALYZER_NONNULL = YES; @@ -1467,8 +1737,22 @@ DEBUG_INFORMATION_FORMAT = dwarf; ENABLE_TESTABILITY = YES; GCC_NO_COMMON_BLOCKS = YES; + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)..\node_modules\neact-native-vector-iconsRNVectorIconsManager", + "$(SRCROOT)..\node_modules\appcenteriosAppCenterReactNative", + "$(SRCROOT)..\node_modules\appcenter-analyticsiosAppCenterReactNativeAnalytics", + "$(SRCROOT)..\node_modules\appcenter-crashesiosAppCenterReactNativeCrashes", + ); INFOPLIST_FILE = "creaternwapp-tvOSTests/Info.plist"; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + LIBRARY_SEARCH_PATHS = ( + "$(inherited)", + "\"$(SRCROOT)/$(TARGET_NAME)\"", + "\"$(SRCROOT)/$(TARGET_NAME)\"", + "\"$(SRCROOT)/$(TARGET_NAME)\"", + "\"$(SRCROOT)/$(TARGET_NAME)\"", + ); OTHER_LDFLAGS = ( "-ObjC", "-lc++", @@ -1478,25 +1762,12 @@ SDKROOT = appletvos; TEST_HOST = "$(BUILT_PRODUCTS_DIR)/creaternwapp-tvOS.app/creaternwapp-tvOS"; TVOS_DEPLOYMENT_TARGET = 10.1; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "\"$(SRCROOT)/$(TARGET_NAME)\"", - "\"$(SRCROOT)/$(TARGET_NAME)\"", - "\"$(SRCROOT)/$(TARGET_NAME)\"", - "\"$(SRCROOT)/$(TARGET_NAME)\"", - ); - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(SRCROOT)\..\node_modules\react-native-vector-icons\RNVectorIconsManager", - "$(SRCROOT)\..\node_modules\appcenter\ios\AppCenterReactNative", - "$(SRCROOT)\..\node_modules\appcenter-analytics\ios\AppCenterReactNativeAnalytics", - "$(SRCROOT)\..\node_modules\appcenter-crashes\ios\AppCenterReactNativeCrashes", - ); }; name = Debug; }; 2D02E49A1E0B4A5E006451C7 /* Release */ = { isa = XCBuildConfiguration; + baseConfigurationReference = 11758E98F817A06733BA37B9 /* Pods-creaternwapp-tvOSTests.release.xcconfig */; buildSettings = { BUNDLE_LOADER = "$(TEST_HOST)"; CLANG_ANALYZER_NONNULL = YES; @@ -1506,8 +1777,22 @@ COPY_PHASE_STRIP = NO; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; GCC_NO_COMMON_BLOCKS = YES; + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)..\node_modules\neact-native-vector-iconsRNVectorIconsManager", + "$(SRCROOT)..\node_modules\appcenteriosAppCenterReactNative", + "$(SRCROOT)..\node_modules\appcenter-analyticsiosAppCenterReactNativeAnalytics", + "$(SRCROOT)..\node_modules\appcenter-crashesiosAppCenterReactNativeCrashes", + ); INFOPLIST_FILE = "creaternwapp-tvOSTests/Info.plist"; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + LIBRARY_SEARCH_PATHS = ( + "$(inherited)", + "\"$(SRCROOT)/$(TARGET_NAME)\"", + "\"$(SRCROOT)/$(TARGET_NAME)\"", + "\"$(SRCROOT)/$(TARGET_NAME)\"", + "\"$(SRCROOT)/$(TARGET_NAME)\"", + ); OTHER_LDFLAGS = ( "-ObjC", "-lc++", @@ -1517,20 +1802,6 @@ SDKROOT = appletvos; TEST_HOST = "$(BUILT_PRODUCTS_DIR)/creaternwapp-tvOS.app/creaternwapp-tvOS"; TVOS_DEPLOYMENT_TARGET = 10.1; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "\"$(SRCROOT)/$(TARGET_NAME)\"", - "\"$(SRCROOT)/$(TARGET_NAME)\"", - "\"$(SRCROOT)/$(TARGET_NAME)\"", - "\"$(SRCROOT)/$(TARGET_NAME)\"", - ); - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(SRCROOT)\..\node_modules\react-native-vector-icons\RNVectorIconsManager", - "$(SRCROOT)\..\node_modules\appcenter\ios\AppCenterReactNative", - "$(SRCROOT)\..\node_modules\appcenter-analytics\ios\AppCenterReactNativeAnalytics", - "$(SRCROOT)\..\node_modules\appcenter-crashes\ios\AppCenterReactNativeCrashes", - ); }; name = Release; }; diff --git a/ios/creaternwapp.xcworkspace/contents.xcworkspacedata b/ios/creaternwapp.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..1babe02 --- /dev/null +++ b/ios/creaternwapp.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,10 @@ + + + + + + + diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..e53ff4c --- /dev/null +++ b/package-lock.json @@ -0,0 +1,63 @@ +{ + "name": "react-native-web-github", + "version": "0.1.0", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "lodash.merge": { + "version": "4.6.1", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.1.tgz", + "integrity": "sha512-AOYza4+Hf5z1/0Hztxpm2/xiPZgi/cjMqdnKTUWTBSKchJlxXXuUSxCCl8rJlf4g6yww/j6mA8nC8Hw/EZWxKQ==" + }, + "lodash.times": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/lodash.times/-/lodash.times-4.3.2.tgz", + "integrity": "sha1-Ph8lZcQxdU1Uq1fy7RdBk5KFyh0=" + }, + "loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "requires": { + "js-tokens": "4.0.0" + } + }, + "opencollective-postinstall": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/opencollective-postinstall/-/opencollective-postinstall-2.0.0.tgz", + "integrity": "sha512-XAe80GycLe2yRGnJsUtt+EO5lk06XYRQt4kJJe53O2kJHPZJOZ+XMF/b47HW96e6LhfKVpwnXVr/s56jhV98jg==" + }, + "prop-types": { + "version": "15.6.2", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.6.2.tgz", + "integrity": "sha512-3pboPvLiWD7dkI3qf3KbUe6hKFKa52w+AE0VCqECtf+QHAKgOL37tTaNCnuX1nAAQ4ZhyP+kYVKf8rLmJ/feDQ==", + "requires": { + "loose-envify": "1.4.0", + "object-assign": "4.1.1" + }, + "dependencies": { + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" + } + } + }, + "react-native-elements": { + "version": "1.0.0-beta7", + "resolved": "https://registry.npmjs.org/react-native-elements/-/react-native-elements-1.0.0-beta7.tgz", + "integrity": "sha512-w89YVfF7own1V3RgHDj6EAofk3mYdL9Z28OolxphFce2mv2k/peFEII7x0S6LyQ7rcT3QaxWDlyP7AS4d8duGg==", + "requires": { + "lodash.merge": "4.6.1", + "lodash.times": "4.3.2", + "opencollective-postinstall": "2.0.0", + "prop-types": "15.6.2" + } + } + } +} diff --git a/yarn.lock b/yarn.lock index 1d46bfd..039ecf7 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1474,14 +1474,6 @@ babel-plugin-transform-strict-mode@^6.24.1: babel-runtime "^6.22.0" babel-types "^6.24.1" -babel-polyfill@6.23.0: - version "6.23.0" - resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.23.0.tgz#8364ca62df8eafb830499f699177466c3b03499d" - dependencies: - babel-runtime "^6.22.0" - core-js "^2.4.0" - regenerator-runtime "^0.10.0" - babel-preset-env@1.6.1: version "1.6.1" resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.6.1.tgz#a18b564cc9b9afdf4aae57ae3c1b0d99188e6f48" @@ -3583,7 +3575,7 @@ external-editor@^1.0.1: spawn-sync "^1.0.15" tmp "^0.0.29" -external-editor@^2.0.1, external-editor@^2.0.4: +external-editor@^2.0.4: version "2.2.0" resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.2.0.tgz#045511cfd8d133f3846673d1047c154e214ad3d5" dependencies: @@ -4573,24 +4565,6 @@ inquirer@1.1.2: strip-ansi "^3.0.0" through "^2.3.6" -inquirer@3.0.6: - version "3.0.6" - resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.0.6.tgz#e04aaa9d05b7a3cb9b0f407d04375f0447190347" - dependencies: - ansi-escapes "^1.1.0" - chalk "^1.0.0" - cli-cursor "^2.1.0" - cli-width "^2.0.0" - external-editor "^2.0.1" - figures "^2.0.0" - lodash "^4.3.0" - mute-stream "0.0.7" - run-async "^2.2.0" - rx "^4.1.0" - string-width "^2.0.0" - strip-ansi "^3.0.0" - through "^2.3.6" - inquirer@3.3.0, inquirer@^3.0.6: version "3.3.0" resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9" @@ -5649,10 +5623,6 @@ lodash.findkey@^4.6.0: version "4.6.0" resolved "https://registry.yarnpkg.com/lodash.findkey/-/lodash.findkey-4.6.0.tgz#83058e903b51cbb759d09ccf546dea3ea39c4718" -lodash.isempty@^4.4.0: - version "4.4.0" - resolved "https://registry.yarnpkg.com/lodash.isempty/-/lodash.isempty-4.4.0.tgz#6f86cbedd8be4ec987be9aaf33c9684db1b31e7e" - lodash.kebabcase@^4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz#8489b1cb0d29ff88195cceca448ff6d6cc295c36" @@ -5661,6 +5631,10 @@ lodash.memoize@^4.1.2: version "4.1.2" resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" +lodash.merge@^4.6.1: + version "4.6.1" + resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.1.tgz#adc25d9cb99b9391c59624f379fbba60d7111d54" + lodash.pad@^4.1.0: version "4.5.1" resolved "https://registry.yarnpkg.com/lodash.pad/-/lodash.pad-4.5.1.tgz#4330949a833a7c8da22cc20f6a26c4d59debba70" @@ -6104,7 +6078,7 @@ minimist@1.1.1: version "1.1.1" resolved "http://registry.npmjs.org/minimist/-/minimist-1.1.1.tgz#1bc2bc71658cdca5712475684363615b0b4f695b" -minimist@1.2.0, minimist@^1.1.1, minimist@^1.1.3, minimist@^1.2.0: +minimist@^1.1.1, minimist@^1.1.3, minimist@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" @@ -6234,13 +6208,6 @@ no-case@^2.2.0: dependencies: lower-case "^1.1.1" -node-fetch@1.6.3: - version "1.6.3" - resolved "http://registry.npmjs.org/node-fetch/-/node-fetch-1.6.3.tgz#dc234edd6489982d58e8f0db4f695029abcd8c04" - dependencies: - encoding "^0.1.11" - is-stream "^1.0.1" - node-fetch@^1.0.1, node-fetch@^1.3.3: version "1.7.3" resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef" @@ -6483,23 +6450,9 @@ onetime@^2.0.0: dependencies: mimic-fn "^1.0.0" -opencollective@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/opencollective/-/opencollective-1.0.3.tgz#aee6372bc28144583690c3ca8daecfc120dd0ef1" - dependencies: - babel-polyfill "6.23.0" - chalk "1.1.3" - inquirer "3.0.6" - minimist "1.2.0" - node-fetch "1.6.3" - opn "4.0.2" - -opn@4.0.2: - version "4.0.2" - resolved "http://registry.npmjs.org/opn/-/opn-4.0.2.tgz#7abc22e644dff63b0a96d5ab7f2790c0f01abc95" - dependencies: - object-assign "^4.0.1" - pinkie-promise "^2.0.0" +opencollective-postinstall@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/opencollective-postinstall/-/opencollective-postinstall-2.0.0.tgz#5fe062f2706bb84150f7fb1af9f1277e46ec1388" opn@5.2.0: version "5.2.0" @@ -7426,20 +7379,13 @@ react-is@^16.3.1: resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.4.1.tgz#d624c4650d2c65dbd52c72622bbf389435d9776e" react-native-elements@^1.0.0-beta5: - version "1.0.0-beta5" - resolved "https://registry.yarnpkg.com/react-native-elements/-/react-native-elements-1.0.0-beta5.tgz#5445976c22bf5bc0a92b91ccb38dafacac966d2a" + version "1.0.0-beta7" + resolved "https://registry.yarnpkg.com/react-native-elements/-/react-native-elements-1.0.0-beta7.tgz#d732affc905079033a8b53343587f7c1dbc59834" dependencies: - lodash.isempty "^4.4.0" + lodash.merge "^4.6.1" lodash.times "^4.3.2" - opencollective "^1.0.3" + opencollective-postinstall "^2.0.0" prop-types "^15.5.8" - react-native-touchable-scale "2.0.0" - -react-native-touchable-scale@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/react-native-touchable-scale/-/react-native-touchable-scale-2.0.0.tgz#13a83a9423e46049cad3e3cc306eba2130883cb1" - dependencies: - prop-types "^15.6.0" react-native-vector-icons@^6.0.1: version "6.0.1" @@ -7728,10 +7674,6 @@ regenerate@^1.2.1: version "1.4.0" resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11" -regenerator-runtime@^0.10.0: - version "0.10.5" - resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" - regenerator-runtime@^0.11.0, regenerator-runtime@^0.11.1: version "0.11.1" resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" @@ -9484,7 +9426,7 @@ xmlbuilder@8.2.2: xmlbuilder@^9.0.7: version "9.0.7" - resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-9.0.7.tgz#132ee63d2ec5565c557e20f4c22df9aca686b10d" + resolved "http://registry.npmjs.org/xmlbuilder/-/xmlbuilder-9.0.7.tgz#132ee63d2ec5565c557e20f4c22df9aca686b10d" xmldoc@^0.4.0: version "0.4.0"