Skip to content

Commit 0bfcc9a

Browse files
committed
Merge pull request #611 from vjeux/update2
Updates from Wed 1 Apr
2 parents fe3bd86 + db3a724 commit 0bfcc9a

28 files changed

Lines changed: 139 additions & 32 deletions

File tree

Examples/2048/2048.xcodeproj/project.pbxproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,9 @@
121121
832341AE1AAA6A7D00B99B32 /* Libraries */,
122122
83CBBA001A601CBA00E9B192 /* Products */,
123123
);
124+
indentWidth = 2;
124125
sourceTree = "<group>";
126+
tabWidth = 2;
125127
};
126128
83CBBA001A601CBA00E9B192 /* Products */ = {
127129
isa = PBXGroup;

Examples/Movies/Movies.xcodeproj/project.pbxproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,9 @@
159159
58C571FC1AA6124500CDF9C8 /* Libraries */,
160160
83CBBA001A601CBA00E9B192 /* Products */,
161161
);
162+
indentWidth = 2;
162163
sourceTree = "<group>";
164+
tabWidth = 2;
163165
};
164166
83CBBA001A601CBA00E9B192 /* Products */ = {
165167
isa = PBXGroup;

Examples/SampleApp/SampleApp.xcodeproj/project.pbxproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,9 @@
242242
832341AE1AAA6A7D00B99B32 /* Libraries */,
243243
83CBBA001A601CBA00E9B192 /* Products */,
244244
);
245+
indentWidth = 2;
245246
sourceTree = "<group>";
247+
tabWidth = 2;
246248
};
247249
83CBBA001A601CBA00E9B192 /* Products */ = {
248250
isa = PBXGroup;

Examples/SampleApp/index.ios.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ var SampleApp = React.createClass({
2424
</Text>
2525
<Text style={styles.instructions}>
2626
Press Cmd+R to reload,{'\n'}
27-
Cmd+Shift+Z for dev menu
27+
Cmd+Control+Z for dev menu
2828
</Text>
2929
</View>
3030
);

Examples/TicTacToe/TicTacToe.xcodeproj/project.pbxproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,9 @@
121121
58C572071AA6126D00CDF9C8 /* Libraries */,
122122
83CBBA001A601CBA00E9B192 /* Products */,
123123
);
124+
indentWidth = 2;
124125
sourceTree = "<group>";
126+
tabWidth = 2;
125127
};
126128
83CBBA001A601CBA00E9B192 /* Products */ = {
127129
isa = PBXGroup;

Examples/UIExplorer/Navigator/BreadcrumbNavSample.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ var BreadcrumbNavSample = React.createClass({
115115
renderScene={this._renderScene}
116116
navigationBar={
117117
<Navigator.BreadcrumbNavigationBar
118-
navigationBarRouteMapper={this._navBarRouteMapper}
118+
routeMapper={this._navBarRouteMapper}
119119
/>
120120
}
121121
/>

Examples/UIExplorer/Navigator/NavigationBarSample.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,8 +121,8 @@ var NavigationBarSample = React.createClass({
121121
)}
122122
navigationBar={
123123
<Navigator.NavigationBar
124-
navigationBarRouteMapper={NavigationBarRouteMapper}
125-
navigationBarStyles={styles.navBar}
124+
routeMapper={NavigationBarRouteMapper}
125+
style={styles.navBar}
126126
/>
127127
}
128128
/>

Examples/UIExplorer/PushNotificationIOSExample.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ class NotificationExample extends React.Component {
7474
_onNotification(notification) {
7575
AlertIOS.alert(
7676
'Notification Received',
77-
`Alert message: ${notification.getMessage()}`,
77+
'Alert message: ' + notification.getMessage(),
7878
[{
7979
text: 'Dismiss',
8080
onPress: null,

Examples/UIExplorer/UIExplorer.xcodeproj/project.pbxproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,9 @@
305305
004D289F1AAF61C70097A701 /* UIExplorerTests */,
306306
83CBBA001A601CBA00E9B192 /* Products */,
307307
);
308+
indentWidth = 2;
308309
sourceTree = "<group>";
310+
tabWidth = 2;
309311
};
310312
83CBBA001A601CBA00E9B192 /* Products */ = {
311313
isa = PBXGroup;
Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
diff a/Libraries/FBReactKit/js/react-native-github/Examples/UIExplorer/UIExplorer.xcodeproj/project.pbxproj b/Libraries/FBReactKit/js/react-native-github/Examples/UIExplorer/UIExplorer.xcodeproj/project.pbxproj (rejected hunks)
2+
@@ -19,6 +19,7 @@
3+
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
4+
13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
5+
147CED4C1AB3532B00DA3E4C /* libRCTActionSheet.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 147CED4B1AB34F8C00DA3E4C /* libRCTActionSheet.a */; };
6+
+ D85B829E1AB6D5D7003F4FE2 /* libRCTVibration.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D85B829C1AB6D5CE003F4FE2 /* libRCTVibration.a */; };
7+
/* End PBXBuildFile section */
8+
9+
/* Begin PBXContainerItemProxy section */
10+
@@ -78,6 +79,13 @@
11+
remoteGlobalIDString = 134814201AA4EA6300B7C361;
12+
remoteInfo = RCTActionSheet;
13+
};
14+
+ D85B829B1AB6D5CE003F4FE2 /* PBXContainerItemProxy */ = {
15+
+ isa = PBXContainerItemProxy;
16+
+ containerPortal = D85B82911AB6D5CE003F4FE2 /* RCTVibration.xcodeproj */;
17+
+ proxyType = 2;
18+
+ remoteGlobalIDString = 832C81801AAF6DEF007FA2F7;
19+
+ remoteInfo = RCTVibration;
20+
+ };
21+
/* End PBXContainerItemProxy section */
22+
23+
/* Begin PBXFileReference section */
24+
@@ -98,6 +106,7 @@
25+
13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
26+
13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
27+
14E0EEC81AB118F7000DECC3 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = ../../Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj; sourceTree = "<group>"; };
28+
+ D85B82911AB6D5CE003F4FE2 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = ../../Libraries/Vibration/RCTVibration.xcodeproj; sourceTree = "<group>"; };
29+
/* End PBXFileReference section */
30+
31+
/* Begin PBXFrameworksBuildPhase section */
32+
@@ -112,6 +121,7 @@
33+
isa = PBXFrameworksBuildPhase;
34+
buildActionMask = 2147483647;
35+
files = (
36+
+ D85B829E1AB6D5D7003F4FE2 /* libRCTVibration.a in Frameworks */,
37+
147CED4C1AB3532B00DA3E4C /* libRCTActionSheet.a in Frameworks */,
38+
134454601AAFCABD003F0779 /* libRCTAdSupport.a in Frameworks */,
39+
134A8A2A1AACED7A00945AAE /* libRCTGeolocation.a in Frameworks */,
40+
@@ -145,6 +155,7 @@
41+
1316A21D1AA397F400C0188E /* Libraries */ = {
42+
isa = PBXGroup;
43+
children = (
44+
+ D85B82911AB6D5CE003F4FE2 /* RCTVibration.xcodeproj */,
45+
14E0EEC81AB118F7000DECC3 /* RCTActionSheet.xcodeproj */,
46+
13417FFA1AA91531003F314A /* ReactKit.xcodeproj */,
47+
134454551AAFCAAE003F0779 /* RCTAdSupport.xcodeproj */,
48+
@@ -334,6 +353,10 @@
49+
ProjectRef = 13417FEA1AA914B8003F314A /* RCTText.xcodeproj */;
50+
},
51+
{
52+
+ ProductGroup = D85B82921AB6D5CE003F4FE2 /* Products */;
53+
+ ProjectRef = D85B82911AB6D5CE003F4FE2 /* RCTVibration.xcodeproj */;
54+
+ },
55+
+ {
56+
ProductGroup = 13417FFB1AA91531003F314A /* Products */;
57+
ProjectRef = 13417FFA1AA91531003F314A /* ReactKit.xcodeproj */;
58+
},
59+
@@ -396,6 +419,13 @@
60+
remoteRef = 147CED4A1AB34F8C00DA3E4C /* PBXContainerItemProxy */;
61+
sourceTree = BUILT_PRODUCTS_DIR;
62+
};
63+
+ D85B829C1AB6D5CE003F4FE2 /* libRCTVibration.a */ = {
64+
+ isa = PBXReferenceProxy;
65+
+ fileType = archive.ar;
66+
+ path = libRCTVibration.a;
67+
+ remoteRef = D85B829B1AB6D5CE003F4FE2 /* PBXContainerItemProxy */;
68+
+ sourceTree = BUILT_PRODUCTS_DIR;
69+
+ };
70+
/* End PBXReferenceProxy section */
71+
72+
/* Begin PBXResourcesBuildPhase section */

0 commit comments

Comments
 (0)