No More Posting New Topics!

If you have a question or an issue, please start a thread in our Github Discussions Forum.
This forum is closed for new threads/ topics.

Navigation

    Quasar Framework

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. Tags
    3. cordova-plugin
    Log in to post
    • T

      Cordova Plugin not working in Vuex files
      Help • cordova-plugin import vuex • • tc

      14
      0
      Votes
      14
      Posts
      1179
      Views

      R

      @tc Hi,
      Just like you are using storage plugin as I’m using advance HTTP plugin.
      Cordova loads plugins after when device is ready. If you try to use plugin directly when app is booting then these plugins would not be available. So I used “deviceready” event to access http plugin and you can use the same event.

    • K

      Cordova Google Maps Plugin
      Help • cordova cordova-plugin google api google maps quasar-cli • • kw_7

      1
      0
      Votes
      1
      Posts
      406
      Views

      No one has replied

    • C

      Cordova social sharing plugin
      Framework • cordova-plugin • • chiacy

      3
      0
      Votes
      3
      Posts
      385
      Views

      W

      @chiacy please can you show me how you made it work for you

    • D

      Use a Cordova plugin inside the Quasar app (file caching)
      Help • cordova cordova-plugin file caching quasar • • D3myon

      2
      0
      Votes
      2
      Posts
      1181
      Views

      benoitranque

      You use this as you would in any other Vue app. Quasar changes none of that. Since you probably want a single cache instance in your app, you probably should put it in a dedicated file.

      // cache.js const cache = new CordovaFileCache(OptionsObject) export default cache // usage in components import cache from './path/to/cache'
    • P

      Cordova cordova-plugin-qrscanner plugin preview not showing
      Help • cordova cordova-plugin qr-reading • • paragonHex

      2
      0
      Votes
      2
      Posts
      3895
      Views

      P

      So in the end I solved it with the phonegap-plugin-barcodescanner, which is very similar to the cordova-plugin-barcodescanner, but you can configure it, so it feels more like a QR scanner.

      Be aware that it the two above internally (in cordova) register/use the same name, so before changing from the cordova plugin to the phonegap one, remove it with the command below before adding the another one, so the build process won’t break.
      $ cordova plugin rm cordova-plugin-barcodescanner