Pavel Chuchuva

Results 8 comments of Pavel Chuchuva

Also consider https://github.com/ascoders/react-native-image-viewer

[Readme](https://github.com/redis/redis-rb/blob/master/README.md#timeouts) provides a way to disable reconnecting: ``` redis = Redis.new(reconnect_attempts: 0) redis.subscribe_with_timeout(5, "news") do |on| on.message do |channel, message| # ... end end ``` This makes the `subscribe_with_timeout` method...

I think this is because dependant cordova-plugin-file requires that permission: https://github.com/apache/cordova-plugin-file/blob/master/plugin.xml#L137

See also https://github.com/apache/cordova-plugin-file/issues/243

Is it possible to stop all network checks as soon as the app goes to background? My app shows 'You are offline' message if there is no internet connection. It...

@dcode333 Thank you! Unfortunately I don't have permissions to assign this issue to you but I believe you can still work on it and then submit a pull request, see...

I believe cordova-plugin-inapppurchase is not affected by Google Play Developer API v1 and v2 deprecation: > For in-app billing developers > This deprecation only affects the APIs which are used...

@v-trishyn Double-check what you pass to the `store.register` method. The platform field for at least some products should be `CdvPurchase.Platform.GOOGLE_PLAY`, for example: ``` const ProductType = CdvPurchase.ProductType; const Platform =...