Javier
Javier
I had the same problem. Viewing the code I saw that you must to subtract the "numHeadersAndPlaceholders" cause they affect to the count of items. This is the headersCount \*...
Same here. I tried with: `import { AdmobOriginal } from '@awesome-cordova-plugins/admob';` And in constructor: `private admob: AdmobOriginal` And now editor is okay, but ionic doesn't compile. I ended using "Admob...
Same on iOS 14 with Ionic Capacitor: Log just says: Media create INVALID Media startRecordingAudio INVALID Media stopRecordingAudio INVALID Couldn't catch any other log from exceptions nor catching error promises,...
> > Same issue here in Android API 30. > > Any workaround to fix it? > > `android:requestLegacyExternalStorage="true"` not work for me. > > Thanks! > > Did you...
Yea, as @ruckus said, in v6.+ of gms you need to remove options (the 2nd parameter) from addApi method. ``` .addApi(Plus.API) ``` So you need to modify the modules: go...
Thanks for your solution, I was going crazy. Could this be a good approach for all platforms? ``` final file = File(outputFile); if (!file.existsSync()) { file.writeAsBytes(bytes); } ``` Because `file.isBlank`...