Mihai
Mihai
No, you can record the steps without Google Fit app by subscribing to fitness data: https://developers.google.com/fit/android/record
Maybe you didn't add an OAuth client id with the SHA-1 of release certificate? See https://developers.google.com/fit/android/get-api-key
I see the same issue starting with version 0.27.0 (Network Error on Android, works fine on iOS). It works fine on both platforms with 0.26.1 (with a workaround for another...
Ok, so after a few hours of debugging, I finally found what's wrong - it's the `Content-Type` request header. If you don't set it explicitly, then the default value is...
@Mkay4real @singhgovind770 Did you try to set `'Content-Type': 'multipart/form-data'` in `headers` when you make the request?
The issue is that axios is setting a wrong `Content-Type` header if you don't pass it explicitly. See https://github.com/axios/axios/issues/4823#issuecomment-1224615032
@Slapbox That doesn't change anything since you set the same value as the default. I think you must use `'Content-Type': 'multipart/form-data'` when you use FormData. From my debugging if you...
It looks like that documentation should be updated. In 0.74 a new `customizeRootView` function was added - https://github.com/facebook/react-native/pull/42088, which I think can be used something like this: ``` #import //...
@batusenyuz Not sure about that, I just indicated where I think is the new place for that code in 0.73 / 0.74. I am not using it and didn't test...
I switched to https://www.npmjs.com/package/react-native-mask-input, seems to work fine. I didn't observe initially that this library is not mantained anymore.