Skip to content

Commit dc34b67

Browse files
committed
Use manual installation instead of cocoapods
1 parent c79e3ef commit dc34b67

File tree

3 files changed

+62
-19
lines changed

3 files changed

+62
-19
lines changed

ios/Podfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,4 @@ target 'ReactNativeStarterKit' do
77

88
# Pods for ReactNativeStarterKit
99

10-
pod 'RNVectorIcons', :path => '../node_modules/react-native-vector-icons'
11-
1210
end

ios/ReactNativeStarterKit.xcodeproj/project.pbxproj

Lines changed: 47 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
8426DCB921AEE7070039F6D4 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 8426DC6C21AEDC480039F6D4 /* AppDelegate.m */; };
4040
8426DCBA21AEE7070039F6D4 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
4141
84A24C3D21D1C84000B2C36D /* libReactNativeNavigation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 8426DC8721AEDDA30039F6D4 /* libReactNativeNavigation.a */; };
42+
84F1EF6C21D30AAA00477F1F /* libRNVectorIcons.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 84F1EF6921D30AA000477F1F /* libRNVectorIcons.a */; };
4243
859C9107BDBE48CC991D0D52 /* Ionicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = EE2A99E45A8041159FCD5C3D /* Ionicons.ttf */; };
4344
ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */ = {isa = PBXBuildFile; fileRef = ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */; };
4445
C73EDD0B90C14281A083D9C5 /* SimpleLineIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = ABC4F5C3728C46568B51B637 /* SimpleLineIcons.ttf */; };
@@ -320,6 +321,20 @@
320321
remoteGlobalIDString = 7B49FEBB1E95090800DEB3EA;
321322
remoteInfo = ReactNativeNavigationTests;
322323
};
324+
84F1EF6821D30AA000477F1F /* PBXContainerItemProxy */ = {
325+
isa = PBXContainerItemProxy;
326+
containerPortal = 84F1EF6321D30AA000477F1F /* RNVectorIcons.xcodeproj */;
327+
proxyType = 2;
328+
remoteGlobalIDString = 5DBEB1501B18CEA900B34395;
329+
remoteInfo = RNVectorIcons;
330+
};
331+
84F1EF6A21D30AA000477F1F /* PBXContainerItemProxy */ = {
332+
isa = PBXContainerItemProxy;
333+
containerPortal = 84F1EF6321D30AA000477F1F /* RNVectorIcons.xcodeproj */;
334+
proxyType = 2;
335+
remoteGlobalIDString = A39873CE1EA65EE60051E01A;
336+
remoteInfo = "RNVectorIcons-tvOS";
337+
};
323338
ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */ = {
324339
isa = PBXContainerItemProxy;
325340
containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */;
@@ -361,6 +376,7 @@
361376
832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = "<group>"; };
362377
8426DC6C21AEDC480039F6D4 /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = ReactNativeStarterKit/AppDelegate.m; sourceTree = "<group>"; };
363378
8426DC8121AEDDA20039F6D4 /* ReactNativeNavigation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = ReactNativeNavigation.xcodeproj; path = "../node_modules/react-native-navigation/lib/ios/ReactNativeNavigation.xcodeproj"; sourceTree = "<group>"; };
379+
84F1EF6321D30AA000477F1F /* RNVectorIcons.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RNVectorIcons.xcodeproj; path = "../node_modules/react-native-vector-icons/RNVectorIcons.xcodeproj"; sourceTree = "<group>"; };
364380
866D49B1133942FDAB08E113 /* Feather.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Feather.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Feather.ttf"; sourceTree = "<group>"; };
365381
94EA537DA99C40218D069E78 /* FontAwesome.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = FontAwesome.ttf; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome.ttf"; sourceTree = "<group>"; };
366382
A119AF2131134985BFB0D7D3 /* Foundation.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Foundation.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Foundation.ttf"; sourceTree = "<group>"; };
@@ -388,6 +404,7 @@
388404
isa = PBXFrameworksBuildPhase;
389405
buildActionMask = 2147483647;
390406
files = (
407+
84F1EF6C21D30AAA00477F1F /* libRNVectorIcons.a in Frameworks */,
391408
84A24C3D21D1C84000B2C36D /* libReactNativeNavigation.a in Frameworks */,
392409
ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */,
393410
5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */,
@@ -555,6 +572,7 @@
555572
832341AE1AAA6A7D00B99B32 /* Libraries */ = {
556573
isa = PBXGroup;
557574
children = (
575+
84F1EF6321D30AA000477F1F /* RNVectorIcons.xcodeproj */,
558576
8426DC8121AEDDA20039F6D4 /* ReactNativeNavigation.xcodeproj */,
559577
5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */,
560578
146833FF1AC3E56700842450 /* React.xcodeproj */,
@@ -615,6 +633,15 @@
615633
name = Products;
616634
sourceTree = "<group>";
617635
};
636+
84F1EF6421D30AA000477F1F /* Products */ = {
637+
isa = PBXGroup;
638+
children = (
639+
84F1EF6921D30AA000477F1F /* libRNVectorIcons.a */,
640+
84F1EF6B21D30AA000477F1F /* libRNVectorIcons-tvOS.a */,
641+
);
642+
name = Products;
643+
sourceTree = "<group>";
644+
};
618645
ADBDB9201DFEBF0600ED6528 /* Products */ = {
619646
isa = PBXGroup;
620647
children = (
@@ -777,6 +804,10 @@
777804
ProductGroup = 8426DC8221AEDDA20039F6D4 /* Products */;
778805
ProjectRef = 8426DC8121AEDDA20039F6D4 /* ReactNativeNavigation.xcodeproj */;
779806
},
807+
{
808+
ProductGroup = 84F1EF6421D30AA000477F1F /* Products */;
809+
ProjectRef = 84F1EF6321D30AA000477F1F /* RNVectorIcons.xcodeproj */;
810+
},
780811
);
781812
projectRoot = "";
782813
targets = (
@@ -1053,6 +1084,20 @@
10531084
remoteRef = 8426DC8821AEDDA30039F6D4 /* PBXContainerItemProxy */;
10541085
sourceTree = BUILT_PRODUCTS_DIR;
10551086
};
1087+
84F1EF6921D30AA000477F1F /* libRNVectorIcons.a */ = {
1088+
isa = PBXReferenceProxy;
1089+
fileType = archive.ar;
1090+
path = libRNVectorIcons.a;
1091+
remoteRef = 84F1EF6821D30AA000477F1F /* PBXContainerItemProxy */;
1092+
sourceTree = BUILT_PRODUCTS_DIR;
1093+
};
1094+
84F1EF6B21D30AA000477F1F /* libRNVectorIcons-tvOS.a */ = {
1095+
isa = PBXReferenceProxy;
1096+
fileType = archive.ar;
1097+
path = "libRNVectorIcons-tvOS.a";
1098+
remoteRef = 84F1EF6A21D30AA000477F1F /* PBXContainerItemProxy */;
1099+
sourceTree = BUILT_PRODUCTS_DIR;
1100+
};
10561101
ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */ = {
10571102
isa = PBXReferenceProxy;
10581103
fileType = archive.ar;
@@ -1239,7 +1284,7 @@
12391284
"-ObjC",
12401285
"-lc++",
12411286
);
1242-
PRODUCT_BUNDLE_IDENTIFIER = com.david.react.ReactNativeStarterKit;
1287+
PRODUCT_BUNDLE_IDENTIFIER = com.react.ReactNativeNavigationStarterKit;
12431288
PRODUCT_NAME = ReactNativeStarterKit;
12441289
VERSIONING_SYSTEM = "apple-generic";
12451290
};
@@ -1259,7 +1304,7 @@
12591304
"-ObjC",
12601305
"-lc++",
12611306
);
1262-
PRODUCT_BUNDLE_IDENTIFIER = com.david.react.ReactNativeStarterKit;
1307+
PRODUCT_BUNDLE_IDENTIFIER = com.react.ReactNativeNavigationStarterKit;
12631308
PRODUCT_NAME = ReactNativeStarterKit;
12641309
VERSIONING_SYSTEM = "apple-generic";
12651310
};

ios/ReactNativeStarterKit/Info.plist

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -34,21 +34,7 @@
3434
<true/>
3535
</dict>
3636
<key>NSLocationWhenInUseUsageDescription</key>
37-
<string/>
38-
<key>UILaunchStoryboardName</key>
39-
<string>LaunchScreen</string>
40-
<key>UIRequiredDeviceCapabilities</key>
41-
<array>
42-
<string>armv7</string>
43-
</array>
44-
<key>UISupportedInterfaceOrientations</key>
45-
<array>
46-
<string>UIInterfaceOrientationPortrait</string>
47-
<string>UIInterfaceOrientationLandscapeLeft</string>
48-
<string>UIInterfaceOrientationLandscapeRight</string>
49-
</array>
50-
<key>UIViewControllerBasedStatusBarAppearance</key>
51-
<true/>
37+
<string></string>
5238
<key>UIAppFonts</key>
5339
<array>
5440
<string>AntDesign.ttf</string>
@@ -67,5 +53,19 @@
6753
<string>SimpleLineIcons.ttf</string>
6854
<string>Zocial.ttf</string>
6955
</array>
56+
<key>UILaunchStoryboardName</key>
57+
<string>LaunchScreen</string>
58+
<key>UIRequiredDeviceCapabilities</key>
59+
<array>
60+
<string>armv7</string>
61+
</array>
62+
<key>UISupportedInterfaceOrientations</key>
63+
<array>
64+
<string>UIInterfaceOrientationPortrait</string>
65+
<string>UIInterfaceOrientationLandscapeLeft</string>
66+
<string>UIInterfaceOrientationLandscapeRight</string>
67+
</array>
68+
<key>UIViewControllerBasedStatusBarAppearance</key>
69+
<true/>
7070
</dict>
7171
</plist>

0 commit comments

Comments
 (0)