Marius

Results 31 comments of Marius

I can't use my Capacitor 5 App with OneSignal. Is there any update on this? @jennantilla

Make sure you're using **.subscribe()** und **platform.ready()** with it: ``` this.platform.ready().then(() => { if (this.platform.is('cordova')) { this.safariViewController.show({ url: 'http://example.com' }).subscribe(); } }); ``` And try to avoid the 'hidden' parameter....

I'm seeing the same error with Ionic/Capacitor. Edit: The Bug happens after the App went to Background and gets opened again. So is this a Bug of RevenueCat or OneSignal?

The **Media Session API** is a great solution to display media controls on iOS! It works like a charm and syncs with the HTML5 Audio Player. I don't need any...

> We have put together an iOS plugin for this - where do we submit the PR? @imhoffd @IT-MikeS Hey @nomadcalendar, thank you for your effort! If you haven't seen...

@nomadcalendar I saw you found your way into the Discord Server. Seems like they moved from Slack!

Here is the Open Source Version of the Plugin by @nomadcalendar: https://github.com/nomadcalendar/capacitor-walletconnect

@gillarf I have the same issue. Did you get it working?

Totally my fault. It works great. I misspelled the file path! Here is my code: ```ts const AUDIO_FILE_DIRECTORY = 'podcast'; async preload() { if (this.platform.is('capacitor')) { const currentEpisode = 'https://domain.com/files/my-audio-file.mp3';...

Hi @timstoute, my approach is a good solution to provide an offline mode like Spotify. Meanwhile I'm using HTML5 Audio to stream audio files in Ionic / Capacitor applications. I...