
Reactotron version :1.15.0
React Native Version :0.553
Reactoron client(js) version : ^1.14.0
** latest reactotron client 2.0 also dont work.. Empty.
platform:mac
** I don't change any code, previously i can see ajax request. I have update all bower also.
Reactotron 2 requires the reactotron-react-native@next version because it hasn鈥檛 been released yet.
Apparently react-native鈥檚 new blob support has changed some stuff. I haven鈥檛 seen this in action yet though.
What does the yellow box say?
What does your fetch call look like?
i'm not sure i'm updating anything.. but it kinda disappear now.
Apparently react-native鈥檚 new blob support has changed some stuff ?
Sorry. I'm kinda not understand. It is react-native introduce new thing again ? I really scare if the create new thing each patches without proper note.
my fetch
async function post(url, params, fileUrl) {
let securityToken = await AsyncStorage.getItem('securityToken');
let data = new FormData();
Object.keys(params).forEach((key) => {
if (params[key] instanceof Date) {
data.append(key, value.toISOString())
} else {
data.append(key, String(params[key]))
}
});
const fetchOptions = {
method: 'POST',
headers: {
'Accept': 'application/json',
'securityToken': securityToken ? securityToken : '',
'UserAgent': os
},
body: data,
timeout: 6 * 1000
};
return fetch(url, fetchOptions)
.then(checkStatus)
.then(parseJSON)
}
A full gist at code
Ya, blob support landed recently (0.53? 0.54?) and with it, changes to the network stack.
I鈥檒l. Have to take a closer look at posts with for data and figure out what changed and how to fix it.
Thx for the code. That makes it much easier.
Blob support landed in beta 4. Please let us know if this is still an issue!
i will check up later . I will give the respond 馃憤
I confirm that it now works as supposed.

I'm still having this issue in [email protected]
Testing on real Android device and develop on Windows.
@gorvinsky
Indeed you need at least [email protected] to make it work.
@ecerroni After installing [email protected] without modifying the codes, now it can't detect any activity at all.
@gorvinsky
Right, I forgot to say that the new v2 beta desktop client is needed as well. You can download it here:
https://github.com/infinitered/reactotron/releases
It's working now Thanks a lot @ecerroni
Most helpful comment
I confirm that it now works as supposed.