Applications Memory Usage (kB):
Uptime: 89089252 Realtime: 262050357
** MEMINFO in pid 712 [com.facebook.f8] **
Pss Private Private Swapped Heap Heap Heap
Total Dirty Clean Dirty Size Alloc Free
------ ------ ------ ------ ------ ------ ------
Native Heap 28515 28372 0 1100 46208 41414 4793
Dalvik Heap 45802 45476 0 7364 61380 55669 5711
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class MyBridgedComponent extends Component { | |
constructor(props) { | |
super(props); | |
this.state = { | |
isLoaded: false | |
}; | |
} | |
onBridgeMessage(message) { |
NewerOlder