ParanoidAndroid

Results 111 comments of ParanoidAndroid

@AlexandreBonaventure what about using `query` instead of `params`

maybe OT, but can we use the format https://omaps.app/{latitude},{longitude} as deeplinks to open correctly in the browser (when the app is not installed)? Looks like it is working in the...

@biodranik yes, but not on Android or iOS, so we cannot use it Am I mistaken? The other format https://omaps.app/map?v=1&ll=22.17319,-159.65687&n=Kalalau%20Camping&ll=22.17168,-159.66096&n=Dream%20Beach&ll=22.17182,-159.65776 works in Android and iOS, but on the web, it...

@RedAuburn > > The other format > > https://omaps.app/map?v=1&ll=22.17319,-159.65687&n=Kalalau%20Camping&ll=22.17168,-159.66096&n=Dream%20Beach&ll=22.17182,-159.65776 > > Where'd this format come from? AFAIK OM doesn't support sharing multiple coords at the same time From https://omaps.app/api ```...

@chriskhongqarma On Android 13 and API 33 (Gradle 8), now that fork throws an error `Couldn't find meta-data for provider with authority null.cordova.plugin.mediacapture.provider` because `this.applicationID` is null in `Capture.java` (line...

@shivamsharmanps yes but you need to apply the changes I mentioned, or use this fork https://github.com/epicollect5/cordova-plugin-media-capture

+1. while killing the app and reopening works, a pull to refresh or a refresh button would be nice.

Same here ``` Response::macro('attachment', function ($content, $filename) { $headers = [ 'Content-type' => 'text/csv', 'Content-Disposition' => 'attachment; filename="' . $filename . '"', ]; return Response::make($content, 200, $headers); }); ``` `return...

@Creiger Always used this call ``` cordova.plugins.foregroundService.start( PARAMETERS.APP_NAME, labels.loading, 'ec5_notification', 1, 10 ); ``` and always crashes are reported on the Play Console

After 2 years I realised the icon name must be passed without the extension (`.png`). It's weird it works in some Android versions and not in others though