Skip to content

Commit

Permalink
work
Browse files Browse the repository at this point in the history
  • Loading branch information
reime005 committed Oct 31, 2020
1 parent 0cea805 commit 9cef483
Show file tree
Hide file tree
Showing 42 changed files with 4,193 additions and 44 deletions.
4 changes: 2 additions & 2 deletions .env
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
APP_VERSION_CODE=1
APP_VERSION_NAME=0.0.1
APP_ID=com.reactnativebase
APP_NAME=Base App
APP_ID=com.reime005.spaceseek
APP_NAME=Space Seek
2 changes: 1 addition & 1 deletion android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.reactnativebase">
package="com.reime005.spaceseek">

<uses-permission android:name="android.permission.INTERNET" />

Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.reactnativebase;
package com.reime005.spaceseek;

import com.facebook.react.ReactActivity;
import com.facebook.react.ReactActivityDelegate;
Expand All @@ -13,7 +13,7 @@ public class MainActivity extends ReactActivity {
*/
@Override
protected String getMainComponentName() {
return "ReactNativeBase";
return "SpaceSeek";
}

@Override
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.reactnativebase;
package com.reime005.spaceseek;

import android.app.Application;
import android.content.Context;
Expand Down
2 changes: 1 addition & 1 deletion android/settings.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
rootProject.name = 'ReactNativeBase'
rootProject.name = 'SpaceSeek'
apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings)
include ':app'
6 changes: 3 additions & 3 deletions app.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"name": "ReactNativeBase",
"displayName": "ReactNativeBase"
}
"name": "SpaceSeek",
"displayName": "SpaceSeek"
}
Binary file added assets/fonts/RobotoCondensed-Bold.ttf
Binary file not shown.
Binary file added assets/fonts/RobotoCondensed-BoldItalic.ttf
Binary file not shown.
Binary file added assets/fonts/RobotoCondensed-Italic.ttf
Binary file not shown.
Binary file added assets/fonts/RobotoCondensed-Light.ttf
Binary file not shown.
Binary file added assets/fonts/RobotoCondensed-LightItalic.ttf
Binary file not shown.
Binary file added assets/fonts/RobotoCondensed-Regular.ttf
Binary file not shown.
2 changes: 1 addition & 1 deletion ios/ReactNativeBase.xcworkspace/contents.xcworkspacedata

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ios/ReactNativeBase/AppDelegate.mm
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(

RCTBridge *bridge = [[RCTBridge alloc] initWithDelegate:self launchOptions:launchOptions];
RCTRootView *rootView = [[RCTRootView alloc] initWithBridge:bridge
moduleName:@"ReactNativeBase"
moduleName:@"SpaceSeek"
initialProperties:nil];

rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1];
Expand Down
11 changes: 10 additions & 1 deletion ios/ReactNativeBase/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
</dict>
</dict>
<key>NSLocationWhenInUseUsageDescription</key>
<string></string>
<string/>
<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>UIRequiredDeviceCapabilities</key>
Expand All @@ -53,5 +53,14 @@
</array>
<key>UIViewControllerBasedStatusBarAppearance</key>
<false/>
<key>UIAppFonts</key>
<array>
<string>RobotoCondensed-Bold.ttf</string>
<string>RobotoCondensed-BoldItalic.ttf</string>
<string>RobotoCondensed-Italic.ttf</string>
<string>RobotoCondensed-Light.ttf</string>
<string>RobotoCondensed-LightItalic.ttf</string>
<string>RobotoCondensed-Regular.ttf</string>
</array>
</dict>
</plist>
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,20 @@
29E4D49B2547965E004779DA /* Config.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 29D47B3C25478B6400597C2C /* Config.xcconfig */; };
29E4D49C2547965F004779DA /* Config.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 29D47B3C25478B6400597C2C /* Config.xcconfig */; };
29E4D4A12547965F004779DA /* Config.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 29D47B3C25478B6400597C2C /* Config.xcconfig */; };
2BCB150216A34AFDB3A293DA /* RobotoCondensed-LightItalic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 4AE97E501D0540CAAF8800B8 /* RobotoCondensed-LightItalic.ttf */; };
2D02E4BC1E0B4A80006451C7 /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.mm */; };
2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
2DCD954D1E0B4F2C00145EB5 /* ReactNativeBaseTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* ReactNativeBaseTests.m */; };
39E8304530154D3BBA63796B /* RobotoCondensed-Bold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 8B1E98A4EFCE4E569B3F319A /* RobotoCondensed-Bold.ttf */; };
550D72948B1D3CC8C2608529 /* libPods-ReactNativeBase.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D7168ADF0B84B5A4F872B4CD /* libPods-ReactNativeBase.a */; };
6D6E00F9F3FC4EB5AFA76BAA /* RobotoCondensed-Italic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = AE98758916C742F3A062D276 /* RobotoCondensed-Italic.ttf */; };
7A4DD5DC2AA1D41826E2CD0B /* libPods-ReactNativeBase-tvOSTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = CFCE0693041032A1984F2BBF /* libPods-ReactNativeBase-tvOSTests.a */; };
81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
836405BA47AF498EA4715DB0 /* RobotoCondensed-BoldItalic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 60CC8715C42544A7890C1DF3 /* RobotoCondensed-BoldItalic.ttf */; };
8D5AF6A62085140CAB1AFB48 /* libPods-ReactNativeBase-ReactNativeBaseTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5D919475121B939A9DFC7FA1 /* libPods-ReactNativeBase-ReactNativeBaseTests.a */; };
A67F8C2CFD7D4B13B8094625 /* RobotoCondensed-Light.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 91E27A870D464DF2BB693765 /* RobotoCondensed-Light.ttf */; };
F286397AFFF14B64B57787B0 /* RobotoCondensed-Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F8A33D38C08047EE8D3382B9 /* RobotoCondensed-Regular.ttf */; };
/* End PBXBuildFile section */

/* Begin PBXContainerItemProxy section */
Expand Down Expand Up @@ -55,22 +61,34 @@
13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = ReactNativeBase/Images.xcassets; sourceTree = "<group>"; };
13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = ReactNativeBase/Info.plist; sourceTree = "<group>"; };
13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = ReactNativeBase/main.m; sourceTree = "<group>"; };
1FCD99DD22F84187BA545B16 /* RobotoCondensed-Italic.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "RobotoCondensed-Italic.ttf"; path = "../assets/fonts/RobotoCondensed-Italic.ttf"; sourceTree = "<group>"; };
2607ABFDBCABC2D64BE154F8 /* Pods-ReactNativeBase-tvOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ReactNativeBase-tvOS.debug.xcconfig"; path = "Target Support Files/Pods-ReactNativeBase-tvOS/Pods-ReactNativeBase-tvOS.debug.xcconfig"; sourceTree = "<group>"; };
29D47B3C25478B6400597C2C /* Config.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Config.xcconfig; sourceTree = "<group>"; };
2D02E47B1E0B4A5D006451C7 /* ReactNativeBase-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "ReactNativeBase-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; };
2D02E4901E0B4A5D006451C7 /* ReactNativeBase-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "ReactNativeBase-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
36518C42E0A54D61BF925210 /* RobotoCondensed-Regular.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "RobotoCondensed-Regular.ttf"; path = "../assets/fonts/RobotoCondensed-Regular.ttf"; sourceTree = "<group>"; };
3E83DC7E91F84E90B39EF872 /* RobotoCondensed-BoldItalic.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "RobotoCondensed-BoldItalic.ttf"; path = "../assets/fonts/RobotoCondensed-BoldItalic.ttf"; sourceTree = "<group>"; };
4AE97E501D0540CAAF8800B8 /* RobotoCondensed-LightItalic.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "RobotoCondensed-LightItalic.ttf"; path = "../android/app/src/main/assets/fonts/RobotoCondensed-LightItalic.ttf"; sourceTree = "<group>"; };
523683C62F924EE7A3C3F971 /* RobotoCondensed-Light.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "RobotoCondensed-Light.ttf"; path = "../assets/fonts/RobotoCondensed-Light.ttf"; sourceTree = "<group>"; };
534B2E9EC8C8D5EDC873C251 /* Pods-ReactNativeBase-tvOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ReactNativeBase-tvOS.release.xcconfig"; path = "Target Support Files/Pods-ReactNativeBase-tvOS/Pods-ReactNativeBase-tvOS.release.xcconfig"; sourceTree = "<group>"; };
5D919475121B939A9DFC7FA1 /* libPods-ReactNativeBase-ReactNativeBaseTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-ReactNativeBase-ReactNativeBaseTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
60CC8715C42544A7890C1DF3 /* RobotoCondensed-BoldItalic.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "RobotoCondensed-BoldItalic.ttf"; path = "../android/app/src/main/assets/fonts/RobotoCondensed-BoldItalic.ttf"; sourceTree = "<group>"; };
6D7C59A319038FC9FFB1FFCE /* Pods-ReactNativeBase.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ReactNativeBase.release.xcconfig"; path = "Target Support Files/Pods-ReactNativeBase/Pods-ReactNativeBase.release.xcconfig"; sourceTree = "<group>"; };
81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = ReactNativeBase/LaunchScreen.storyboard; sourceTree = "<group>"; };
89AE8BC628D74CFC81F06C4D /* RobotoCondensed-LightItalic.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "RobotoCondensed-LightItalic.ttf"; path = "../assets/fonts/RobotoCondensed-LightItalic.ttf"; sourceTree = "<group>"; };
8B1E98A4EFCE4E569B3F319A /* RobotoCondensed-Bold.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "RobotoCondensed-Bold.ttf"; path = "../android/app/src/main/assets/fonts/RobotoCondensed-Bold.ttf"; sourceTree = "<group>"; };
91E27A870D464DF2BB693765 /* RobotoCondensed-Light.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "RobotoCondensed-Light.ttf"; path = "../android/app/src/main/assets/fonts/RobotoCondensed-Light.ttf"; sourceTree = "<group>"; };
AE98758916C742F3A062D276 /* RobotoCondensed-Italic.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "RobotoCondensed-Italic.ttf"; path = "../android/app/src/main/assets/fonts/RobotoCondensed-Italic.ttf"; sourceTree = "<group>"; };
C10C47202532196C5B237331 /* Pods-ReactNativeBase.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ReactNativeBase.debug.xcconfig"; path = "Target Support Files/Pods-ReactNativeBase/Pods-ReactNativeBase.debug.xcconfig"; sourceTree = "<group>"; };
C23ABBBE6D784AAB96D54C5A /* RobotoCondensed-Bold.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "RobotoCondensed-Bold.ttf"; path = "../assets/fonts/RobotoCondensed-Bold.ttf"; sourceTree = "<group>"; };
C690ECD9399483ED20115973 /* libPods-ReactNativeBase-tvOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-ReactNativeBase-tvOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
CC10C6F9FF24D84772BA93F8 /* Pods-ReactNativeBase-ReactNativeBaseTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ReactNativeBase-ReactNativeBaseTests.release.xcconfig"; path = "Target Support Files/Pods-ReactNativeBase-ReactNativeBaseTests/Pods-ReactNativeBase-ReactNativeBaseTests.release.xcconfig"; sourceTree = "<group>"; };
CFCE0693041032A1984F2BBF /* libPods-ReactNativeBase-tvOSTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-ReactNativeBase-tvOSTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
D7168ADF0B84B5A4F872B4CD /* libPods-ReactNativeBase.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-ReactNativeBase.a"; sourceTree = BUILT_PRODUCTS_DIR; };
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; };
F7B445FF28E1B454E3BB29C8 /* Pods-ReactNativeBase-tvOSTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ReactNativeBase-tvOSTests.release.xcconfig"; path = "Target Support Files/Pods-ReactNativeBase-tvOSTests/Pods-ReactNativeBase-tvOSTests.release.xcconfig"; sourceTree = "<group>"; };
F8A33D38C08047EE8D3382B9 /* RobotoCondensed-Regular.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "RobotoCondensed-Regular.ttf"; path = "../android/app/src/main/assets/fonts/RobotoCondensed-Regular.ttf"; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
Expand Down Expand Up @@ -169,6 +187,7 @@
83CBBA001A601CBA00E9B192 /* Products */,
2D16E6871FA4F8E400B85C8A /* Frameworks */,
F077025F0A624051C020F84D /* Pods */,
E07C08250FC745A99F943343 /* Resources */,
);
indentWidth = 2;
sourceTree = "<group>";
Expand All @@ -186,6 +205,25 @@
name = Products;
sourceTree = "<group>";
};
E07C08250FC745A99F943343 /* Resources */ = {
isa = PBXGroup;
children = (
8B1E98A4EFCE4E569B3F319A /* RobotoCondensed-Bold.ttf */,
60CC8715C42544A7890C1DF3 /* RobotoCondensed-BoldItalic.ttf */,
AE98758916C742F3A062D276 /* RobotoCondensed-Italic.ttf */,
91E27A870D464DF2BB693765 /* RobotoCondensed-Light.ttf */,
4AE97E501D0540CAAF8800B8 /* RobotoCondensed-LightItalic.ttf */,
F8A33D38C08047EE8D3382B9 /* RobotoCondensed-Regular.ttf */,
C23ABBBE6D784AAB96D54C5A /* RobotoCondensed-Bold.ttf */,
3E83DC7E91F84E90B39EF872 /* RobotoCondensed-BoldItalic.ttf */,
1FCD99DD22F84187BA545B16 /* RobotoCondensed-Italic.ttf */,
523683C62F924EE7A3C3F971 /* RobotoCondensed-Light.ttf */,
89AE8BC628D74CFC81F06C4D /* RobotoCondensed-LightItalic.ttf */,
36518C42E0A54D61BF925210 /* RobotoCondensed-Regular.ttf */,
);
name = Resources;
sourceTree = "<group>";
};
F077025F0A624051C020F84D /* Pods */ = {
isa = PBXGroup;
children = (
Expand Down Expand Up @@ -310,7 +348,7 @@
};
};
};
buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "ReactNativeBase" */;
buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "SpaceSeek" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = en;
hasScannedForEncodings = 0;
Expand Down Expand Up @@ -347,6 +385,12 @@
81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */,
29E4D49A2547965E004779DA /* Config.xcconfig in Resources */,
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
39E8304530154D3BBA63796B /* RobotoCondensed-Bold.ttf in Resources */,
836405BA47AF498EA4715DB0 /* RobotoCondensed-BoldItalic.ttf in Resources */,
6D6E00F9F3FC4EB5AFA76BAA /* RobotoCondensed-Italic.ttf in Resources */,
A67F8C2CFD7D4B13B8094625 /* RobotoCondensed-Light.ttf in Resources */,
2BCB150216A34AFDB3A293DA /* RobotoCondensed-LightItalic.ttf in Resources */,
F286397AFFF14B64B57787B0 /* RobotoCondensed-Regular.ttf in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand Down Expand Up @@ -382,7 +426,7 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh\n";
};
09BAB15C556D937C7FAA20E2 /* [CP] Check Pods Manifest.lock */ = {
isa = PBXShellScriptBuildPhase;
Expand Down Expand Up @@ -976,7 +1020,7 @@
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "ReactNativeBase" */ = {
83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "SpaceSeek" */ = {
isa = XCConfigurationList;
buildConfigurations = (
83CBBA201A601CBA00E9B192 /* Debug */,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
BlueprintIdentifier = "2D02E47A1E0B4A5D006451C7"
BuildableName = "ReactNativeBase-tvOS.app"
BlueprintName = "ReactNativeBase-tvOS"
ReferencedContainer = "container:ReactNativeBase.xcodeproj">
ReferencedContainer = "container:SpaceSeek.xcodeproj">
</BuildableReference>
</BuildActionEntry>
</BuildActionEntries>
Expand All @@ -35,7 +35,7 @@
BlueprintIdentifier = "2D02E48F1E0B4A5D006451C7"
BuildableName = "ReactNativeBase-tvOSTests.xctest"
BlueprintName = "ReactNativeBase-tvOSTests"
ReferencedContainer = "container:ReactNativeBase.xcodeproj">
ReferencedContainer = "container:SpaceSeek.xcodeproj">
</BuildableReference>
</TestableReference>
</Testables>
Expand All @@ -57,7 +57,7 @@
BlueprintIdentifier = "2D02E47A1E0B4A5D006451C7"
BuildableName = "ReactNativeBase-tvOS.app"
BlueprintName = "ReactNativeBase-tvOS"
ReferencedContainer = "container:ReactNativeBase.xcodeproj">
ReferencedContainer = "container:SpaceSeek.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
</LaunchAction>
Expand All @@ -74,7 +74,7 @@
BlueprintIdentifier = "2D02E47A1E0B4A5D006451C7"
BuildableName = "ReactNativeBase-tvOS.app"
BlueprintName = "ReactNativeBase-tvOS"
ReferencedContainer = "container:ReactNativeBase.xcodeproj">
ReferencedContainer = "container:SpaceSeek.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
</ProfileAction>
Expand Down
Loading

0 comments on commit 9cef483

Please sign in to comment.