meteorSD
meteorSD
Could you please explain how to implement your workaround ?
Hi, I'm having the same issue and adding foreground service as suggested by @RilDev did not work. I'm using expo 51
> @RilDev I used your workaround to get things to work, but on Android 14 things broke due to the need to add foreground service on manifest for Android. Curious...
Found a workaround using turndown lib : ``` const turndownService = new TurndownService({ blankReplacement: () => { return ' '; }, }); const html = await editor.blocksToFullHTML(editor.document); const markdown = turndownService.turndown(html);...
Same here. Did you find a workaround ? Does it occur with iOS only or also android ?