shpasser
shpasser
This issue does not need any more information. In order to reproduce the issue just build an Android app using the plugin and use the supplied example: ``` import {...
I think that the actual issue is here: https://github.com/ionic-team/capacitor/blob/ee2069a6e9d3d52e232a31d35909faf87c272c7c/android/capacitor/src/main/java/com/getcapacitor/BridgeActivity.java#L91 The function should call `bridge.getApp().fireStatusChange(false)` but it doesn't.
Sorry, but I do not see how #109 solves my problem. If I would like to create multiple subscriptions using multiple instances of the same class as their handlers would...
Thanks a lot @brimston3 it is very helpful.
Please try running the following command in the Warp terminal and you will be able to reproduce the bug: ``` sleep 1 & ``` This bug is not related to...
As of now the first enabled GSC bucket is used for `storage_path()`. By default GAE Filesystem wrapper uses `storage_path().'/app'` as its root. `storage_path()` is determined according to the environment the...
But I could convert disk root path from `gs://{$bucket}/some_path` to `storage_path()."/{$bucket}/some_path"` when running not on GAE.
Any thoughts?
Does this help? ``` php /** * Override the storage path * * @return string Storage path URL */ public function storagePath() { if ($this->runningOnGae) { if ( ! is_null($this->gaeBucketPath))...
I will have to rearrange some of the documentation and add the environment variable to `app.yaml` (because it is needed before `.env` is loaded). Will keep you posted. BTW, what...