Maxim Belov

Results 12 comments of Maxim Belov

try with evaluate : false ` .pipe(template(options.variables, { interpolate: /{{([\s\S]+?)}}/g, escape: //g, evaluate: false, } )) `

@Blasterdude I dont see your fork of this plugin 1 Make fork 2 Create branch and push commits 3 Create PR

I really hope that someone will merge my changes You can use your forked version like this https://github.com/MaximBelov/cordova-plugin-advanced-http-lab/blob/8a8caba1070babae54f10eafd034e73dadb30e93/package.json#L54

Hi @silkimen You are right I removed new functions I added progress callback for uploadFile and downloadLoad methods

@silkimen Examples: download file https://github.com/MaximBelov/cordova-plugin-advanced-http-lab/blob/main/src/app/home/home.page.ts#L67 upload file https://github.com/MaximBelov/cordova-plugin-advanced-http-lab/blob/main/src/app/home/home.page.ts#L78 We can simply implementation without providing a callback cordova.fireDocumentEvent('onProgress', {transferred: 100 , total: 1000}); What did you think?

Duplicate https://github.com/facebook/facebook-android-sdk/issues/1108

config.xml ``` ``` add to package.json "cordova-plugin-file-opener2": "git+https://github.com/MaximBelov/cordova-plugin-file-opener2.git#4.0.0-custom",

its works with any files on any Android version please create a demo repository like this https://github.com/MaximBelov/cordova-plugin-chooser-lab

```ts import { InAppBrowser, InAppBrowserObject, InAppBrowserOptions } from '@awesome-cordova-plugins/in-app-browser/ngx'; class InAppBrowserService{ private browser: InAppBrowserObject; constructor( private readonly inAppBrowser: InAppBrowser ) {} private async openWithInAppBrowser(url: string, config: InAppBrowserOptions) { this.browser =...