Jose Gonzalez

Results 31 comments of Jose Gonzalez

@cuttlas is a bad idea, because in the apple documentation its recommended don't restore purchases automatically. ```don’t automatically restore purchases, especially not every time your app is launched.``` https://developer.apple.com/library/archive/documentation/NetworkingInternet/Conceptual/StoreKitGuide/Chapters/Restoring.html

Same issue. In `release` mode not works. ``` react-native-cli: 2.0.1 react-native: 0.39.0 ``` _____ ``` react-native-workers: 0.3.1 ```

Considering [this](https://github.com/gcrabtree/react-native-socketio/blob/2c89dc9eebca8adca44211df01db650ad6e4ad04/ios/RNSwiftSocketIO/SocketIOClient/SocketEngine.swift#L226) line of code ``` if connectParams != nil { for (key, value) in connectParams! { let keyEsc = key.urlEncode()! let valueEsc = "\(value)".urlEncode()! queryString += "&\(keyEsc)=\(valueEsc)" } }...

In the readme must specify that it does not support android, to help people decide more easily if it suits the module or not

i'm using `getCachedImagePath` for offline logic, converting the images in that patch to base64 and load to a canvas

But i'm not loading a image inside `render` in a react component. I'm try to render the image inside a `CANVAS`. And in my canvas i'm receiving `base64` image data....