Martin Konicek
fcb0367bf3
Update RunningOnDeviceAndroid.md
2015-11-03 12:18:04 +01:00
Martin Konicek
2da7374ba5
Update DevelopmentSetupAndroid.md
2015-11-03 12:09:48 +01:00
Tadeu Zagallo and facebook-github-bot-4
441995fa6a
Log minification time
...
Summary: public
Add an activity to log minification time.
Reviewed By: vjeux
Differential Revision: D2604863
fb-gh-sync-id: cbdf0297f0611c87b589b87928af235f9ba81172
2015-11-03 01:20:26 -08:00
Brent Vatne
0caa2c64a1
Merge pull request #3855 from satya164/hn
...
Add Hey Neighbor to showcase
2015-11-03 10:08:52 +01:00
Satyajit Sahoo
16b2016493
Add Hey Neighbor to showcase
2015-11-03 14:09:35 +05:30
Chris Geirman and facebook-github-bot-9
b752d79838
update pro tip to clarify how to configure zsh shell
...
Summary: Thanks to alex_frantic for helping me solve this problem...
https://twitter.com/alex_frantic/status/657276624220659712
Closes https://github.com/facebook/react-native/pull/3853
Reviewed By: svcscm
Differential Revision: D2609728
Pulled By: pcottle
fb-gh-sync-id: edb20fcbaff0289a2363eedebd84d20c2d3b39aa
2015-11-02 21:33:31 -08:00
Pawel Sienkowski and facebook-github-bot-3
9bfadb7e1e
Revert moving out setupDevtools call
...
Reviewed By: menglu
Differential Revision: D2609340
fb-gh-sync-id: 3b27b3e18805660bd19ae705916ce4e51120f7f3
2015-11-02 18:34:25 -08:00
Pawel Sienkowski and facebook-github-bot-6
7021918fe5
Move out setupDevtools call from renderApplication function
...
Reviewed By: frantic
Differential Revision: D2600393
fb-gh-sync-id: edac2fa3281314fb02a0951c342c2c1ae9b0441a
2015-11-02 15:37:38 -08:00
Aaron Chiu and facebook-github-bot-7
63c4d07187
fix comment per Github comment
...
Reviewed By: andreicoman11
Differential Revision: D2606888
fb-gh-sync-id: f9e1381b912533de06326d5a90062f0d54741553
2015-11-02 12:38:26 -08:00
Alexander Blom and facebook-github-bot-7
839756b6d4
Make extractor generic
...
Differential Revision: D2605494
fb-gh-sync-id: 37e298598c07221f75250a309b283fae319298af
2015-11-02 11:24:26 -08:00
Pieter De Baets and facebook-github-bot-9
15c53f7563
Fix ReferenceImages resolving for buck test
...
Reviewed By: nicklockwood
Differential Revision: D2605694
fb-gh-sync-id: 90e65974c73405d482476c9eb2ddf1377f9a1401
2015-11-02 11:02:29 -08:00
Tadeu Zagallo and facebook-github-bot-4
63015b911c
Explicitly cast the trampoline prototype to IMP
...
Summary: public
Add explicitly cast to the trampoline prototype to silence warnings.
Reviewed By: javache
Differential Revision: D2605779
fb-gh-sync-id: e208b69236c1b87bb1374ee493840ea5f47b371c
2015-11-02 10:51:48 -08:00
Spencer Ahrens and facebook-github-bot-4
99158f0d5a
Better error message for RawText outside <Text>
...
Summary: public
Native iOS has a good error message, but it's in native which makes
things a little harder to track down (can't use Chrome debugger as easily).
Android has no special handling, so a cryptic "Trying to add unknown view tag..."
redbox would come up.
This puts the error handling in JS so it's shared on all platforms and can be
debugged more easily in Chrome.
Reviewed By: vjeux
Differential Revision: D2606064
fb-gh-sync-id: 5295a44a028c7be79d60dbaf0b5d59fd0a56fdde
2015-11-02 10:51:44 -08:00
Pieter De Baets and facebook-github-bot-6
071f7c9bfa
Enable and fix UIExplorer tests
...
Reviewed By: nicklockwood
Differential Revision: D2605623
fb-gh-sync-id: 493084d67026b86b5f0c00e8147dde3fd344bc97
2015-11-02 10:30:32 -08:00
rocman and facebook-github-bot-5
7236788f34
Memory Leaks caused by RCTNavigator
...
Summary: releasing the viewControllers referred by _navigationController.viewControllers, which is also releasing the related views
Closes https://github.com/facebook/react-native/pull/3808
Reviewed By: svcscm
Differential Revision: D2604735
Pulled By: javache
fb-gh-sync-id: f202d155f04169f3f0f0ef26365b37b8525b6687
2015-11-02 10:08:33 -08:00
James Ide
a456ac3ced
Merge pull request #3552 from whokilledtheelectricmonk/patch-1
...
extend Network/Fetch API documentation
2015-11-02 10:02:02 -08:00
Dave Sibiski and facebook-github-bot-6
6c7c845145
Implements onKeyPress
...
Summary: - When a key is pressed, it's `key value` is passed as an argument to the callback handler.
- For `Enter` and `Backspace` keys, I'm using their `key value` as defined [here](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/key#Key_values ). As per JonasJonny & brentvatne's [suggestion](https://github.com/facebook/react-native/issues/1882#issuecomment-123485883 ).
- Example
```javascript
_handleKeyPress: function(e) {
console.log(e.nativeEvent.key);
},
render: function() {
return (
<View style={styles.container}>
<TextInput
style={{width: 150, height: 25, borderWidth: 0.5}}
onKeyPress={this._handleKeyPress}
/>
<TextInput
style={{width: 150, height: 100, borderWidth: 0.5}}
onKeyPress={this._handleKeyPress}
multiline={true}
/>
</View>
);
}
```
- Implements [shouldChangeCharactersInRange](https://developer.apple.com/library/prerelease/ios/documentat
Closes https://github.com/facebook/react-native/pull/2082
Reviewed By: javache
Differential Revision: D2280460
Pulled By: nicklockwood
fb-gh-sync-id: 1f824f80649043dc2520c089e2531d428d799405
2015-11-02 09:15:31 -08:00
Nick Lockwood and facebook-github-bot-6
6539b26810
Fixed whitespace bug with RCTModuleMethod parsing
...
Summary: public
White space between the end of the first part of the method selector and the first colon was being included in the JS method name.
(See: https://github.com/facebook/react-native/issues/3804 )
Reviewed By: javache
Differential Revision: D2605713
fb-gh-sync-id: b4402c9ede5eb31dd38021c902f046a4e0557814
2015-11-02 08:53:29 -08:00
Tadeu Zagallo and facebook-github-bot-9
cb3a07306e
Expose RCTPerformanceNow, microsecond precision time for JavaScript
...
Summary: public
Expose a more precise timer, millisecond precision is enough to measure small operations.
Reviewed By: javache
Differential Revision: D2604218
fb-gh-sync-id: ba50c891b5690575548fe04ba1ae7d015bc31d90
2015-11-02 08:15:29 -08:00
Tadeu Zagallo and facebook-github-bot-4
ccd90e25c1
Convert remaining uses of alloc] init] to new]
...
Summary: public
We moved to using `new` instead of `alloc] init` but there was still some calls
left.
Reviewed By: javache
Differential Revision: D2604679
fb-gh-sync-id: ff7300ecbedb55dd5e93873592598810c9b87808
2015-11-02 08:03:17 -08:00
Nick Lockwood
0a28ce480e
Merge pull request #3834 from springuper/springuper/fix-comma
...
fix missing comma
2015-11-02 15:43:50 +00:00
Tadeu Zagallo and facebook-github-bot-5
23f7c3acd9
Reenable JS calls to systrace on reload
...
Summary: public
After reloading the JS side of the profiler wasn't being reenabled.
Reviewed By: javache
Differential Revision: D2602258
fb-gh-sync-id: 5de8afb829e9fa8225600e2b0ff9e00313ac1d4c
2015-11-02 05:35:35 -08:00
springuper
eecdd88284
fix missing comma
2015-11-02 15:54:11 +08:00
Tadeu Zagallo and facebook-github-bot-5
d33e84dde5
Use nativeTrace(Begin|End)Section directly from BridgeProfiling
...
Summary: public
Call the native bindings explicitly from BridgeProfiling instead of polyfill'ing `console.profile` with
a function that has a different signature.
Reviewed By: vjeux
Differential Revision: D2602313
fb-gh-sync-id: 9295eff9458f2caa35b7e982c0f7c06dbe65fd09
2015-10-31 16:43:28 -07:00
Martin Konicek
7ae39f83ac
Update RunningOnDeviceAndroid.md
2015-10-31 17:13:32 +00:00
Martin Konicek
d98d4e6952
Update RunningOnDeviceAndroid.md
2015-10-31 16:30:25 +00:00
Martin Konicek
9dec2b4a02
Update RunningOnDeviceAndroid.md
2015-10-31 16:29:45 +00:00
Martin Konicek
156609a2a6
Update RunningOnDeviceAndroid.md
2015-10-31 16:29:13 +00:00
Martin Konicek
b22d6a66d1
Update RunningOnDeviceAndroid.md
2015-10-31 16:25:10 +00:00
Martin Konicek
b48f5a4c75
Update RunningOnDeviceAndroid.md
2015-10-31 16:18:50 +00:00
Martin Konicek
12bbf5b16f
Update RunningOnDeviceAndroid.md
2015-10-31 16:17:06 +00:00
Aaron Chiu and facebook-github-bot-6
f8b8fa40fd
fix calls to ReactInstanceManager.onResume()
...
Differential Revision: D2604172
fb-gh-sync-id: 8993b221c55ebe9f1882d203b1729dfce45795ef
2015-10-31 06:26:27 -07:00
Aaron Chiu and facebook-github-bot-3
c4d780d904
fix packager compilation error
...
Differential Revision: D2604171
fb-gh-sync-id: 11decf6c8b689b903bd9c4fd9aca2ea626cc1d43
2015-10-31 06:14:26 -07:00
Pieter De Baets and facebook-github-bot-7
6ab2719bff
Make <Modal> visible by default
...
Summary: Make <Modal> visible by default and fix the scenario where we present a modal immediately when adding it to the view hierarchy.
Closes #3724
Closes #2952
public
Reviewed By: nicklockwood
Differential Revision: D2595938
fb-gh-sync-id: 1571790d36fe486f1fbbed9f2d66f1e6add73d91
2015-10-30 17:09:27 -07:00
Tadeu Zagallo and facebook-github-bot-7
287e0e3c49
Add RCTPerformanceLogger data to PerfMonitor
...
Summary: public
Add information the times recorded by RCTPerformanceLogger to RCTPerfMonitor,
tap the monitor to show a table view with the data.
Reviewed By: jspahrsummers
Differential Revision: D2595372
fb-gh-sync-id: dc3b73af71b6d7f258e4e5991116bbc6cedc21fb
2015-10-30 16:57:30 -07:00
Aaron Chiu and facebook-github-bot-9
3ee3041d68
Hook up onActivityResult into react native and fb4a
...
Differential Revision: D2602975
fb-gh-sync-id: 3b81f059ee4dca2b63ce07304a552e9deaa28909
2015-10-30 16:49:27 -07:00
aleclarsoniv and facebook-github-bot-0
97f9aa842c
Add 'onMoveShouldSetResponderCapture' to 'propTypes'
...
Summary: Closes https://github.com/facebook/react-native/pull/3777
Reviewed By: svcscm
Differential Revision: D2602708
Pulled By: javache
fb-gh-sync-id: 8259ffd4cdd3d0c052e94ac50a9020d6da59ded7
2015-10-30 16:38:27 -07:00
Aaron Chiu and facebook-github-bot-4
c69c862b9e
revert D2602236
...
fb-gh-sync-id: 251cc97cea632db68d742d51f9ecd6de335b7a23
2015-10-30 15:25:29 -07:00
Tadeu Zagallo and facebook-github-bot-4
010380cca6
Fix CPU profiler upload
...
Summary: public
Changes were made on the packager that broke the CPU profile upload route,
fix it.
Reviewed By: martinbigio
Differential Revision: D2585184
fb-gh-sync-id: 206744f92d403d6851a69891dfac0c4c11bf1b7e
2015-10-30 14:46:00 -07:00
Aaron Chiu and facebook-github-bot-4
0522db4dac
Hook up onActivityResult into react native and fb4a
...
Differential Revision: D2602236
fb-gh-sync-id: 1e623110ae915316ba179e17eff86a8dd2b25034
2015-10-30 14:36:25 -07:00
James Ide
9e84f77e90
Merge pull request #3786 from zpao/docs-npm3
...
Make sure the docs build with npm3 and npm2
2015-10-30 12:52:06 -07:00
James Ide
515b3483b2
Merge pull request #3801 from exponentjs/remove-hit-test-docs
...
[Docs] Remove section on how transparent views don't receive touches on iOS
2015-10-30 12:50:48 -07:00
James Ide
b27127ee1f
[Docs] Remove section on how transparent views don't receive touches on iOS
...
After https://github.com/facebook/react-native/commit/77272d5a9193762b8668c99d54f5bb9a3e423a9e / D2574937, transparent views (managed by RN) on iOS now receive touch events. The code sample from the Known Issues section is now a UIExplorer example, and you can't tap the TouchableOpacity button because the transparent overlay is intercepting touches (which matches the behavior on other platforms).
2015-10-30 12:32:22 -07:00
Alexey Lang and facebook-github-bot-7
9fe36beec9
Log JSBundleRequireTime and JSAppRequireTime.
...
Reviewed By: javache
Differential Revision: D2590707
fb-gh-sync-id: 4c306342b5725aaaac1d8fa0257ef860e446b0d4
2015-10-30 12:06:29 -07:00
Ryan Olson and facebook-github-bot-6
cf0a28265a
Use UIAlertController when available in AlertIOS
...
Reviewed By: nicklockwood
Differential Revision: D2579164
fb-gh-sync-id: 310361585f8380429b631194147553d014ca5076
2015-10-30 11:26:27 -07:00
Adrov Igor and facebook-github-bot-4
fe42a28de1
Add response headers to XHR response
...
Summary: This is code from https://github.com/facebook/react-native/pull/3062 with fix for support multiple values from qbig
Closes https://github.com/facebook/react-native/pull/3709
Reviewed By: svcscm
Differential Revision: D2595944
Pulled By: astreet
fb-gh-sync-id: 2ff78de412f53932e29953b4e2ae6ff7be78eae3
2015-10-30 11:23:25 -07:00
Hedger Wang and facebook-github-bot-9
a33fe94dac
build nested navigation context based on the hierarchy of navigators.
...
Reviewed By: zjj010104
Differential Revision: D2598388
fb-gh-sync-id: 9655bcc86021678984e2a29df20ad2496a1762d1
2015-10-30 11:09:28 -07:00
Naomi Jacobs and facebook-github-bot-9
854689dcfa
Add fetch's clone function to Request and Response prototypes
...
Summary: Fetch includes a cloning function that was not included in the React Native fetch.js. This adds it in so that cloning is available on responses from fetch calls in React Native. The code is taken directly from [fetch](https://github.com/github/fetch/blob/master/fetch.js ) on Github.
<img width="601" alt="screen shot 2015-10-22 at 11 50 53 am" src="https://cloud.githubusercontent.com/assets/11564650/10675101/304ebe5a-78b3-11e5-9d6b-24ea6d9fb998.png ">
<img width="596" alt="screen shot 2015-10-22 at 12 20 08 pm" src="https://cloud.githubusercontent.com/assets/11564650/10675834/4abaf4ee-78b7-11e5-9d34-436290b64b30.png ">
Closes https://github.com/facebook/react-native/pull/3614
Reviewed By: svcscm
Differential Revision: D2600517
Pulled By: sahrens
fb-gh-sync-id: d70c5c58e923d997f93bb5aa2d1d90e95d5a75f2
2015-10-30 10:57:33 -07:00
Pawel Sienkowski and facebook-github-bot-4
db71dde10a
Props setter for RCTRootView
...
Reviewed By: javache
Differential Revision: D2587673
fb-gh-sync-id: 79fff15b625ed9f4856ec75246ecafd1f7ef95f1
2015-10-30 09:28:27 -07:00
Elliot Lynde and facebook-github-bot-9
f96c92d75c
Add OkHttpClient to NetworkingModule constructor
...
Reviewed By: sahrens
Differential Revision: D2600266
fb-gh-sync-id: 168195567d0dca819e53d5e3f0f7cfb24f415b63
2015-10-30 09:20:27 -07:00