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
    Log in to post
    • P

      get in-app purchase working with cordova-plugin-purchase
      Framework • cordova in-app purchase • • pankaj

      2
      0
      Votes
      2
      Posts
      520
      Views

      W

      @pankaj I have gotten it working already.

      cordova plugin add cordova-plugin-purchase.

      Here is my boot file:

      import productIds from '../utils/productIds'; export default ()=>{ if(process.env.MODE!=='cordova')return; if(!window.store){ console.log('Store not available'); return; } store.validator='https://validator.fovea.cc/v1/validate?appName=...&apiKey=...'; productIds.forEach(id=>{ store.register({ id, type:id.endsWith('_single')?store.CONSUMABLE:store.PAID_SUBSCRIPTION }); store.when(id).approved(product=>product.verify()).verified(product=>product.finish()); }); store.error(error=>{ console.log(error); store.refresh(); }); store.refresh(); };

      And in my store component page I just call

      store.order(product);

      I also used PayPal for the equivalent purchases in electron.

    • D

      Quasar Vs Ionic 5 in 2020
      Framework • capacitor cordova deployment native performance • • daveshirman

      7
      0
      Votes
      7
      Posts
      4417
      Views

      W

      @daveshirman

      Page transition animations
      Comes out of the box in Quasar, not sure about Ionic Easy of customising CSS
      In Quasar you have SASS, SCSS and Stylus variables. Ease of making a production build on iOS and Android
      I’ve only ever done Android. It works seamlessly. Compatibility with Cordova/Capacitor
      Fully compatible but I think for Capacitor Ionic may have an edge since they wrote Capacitor after all. General feel of the app Vs native
      Perfect for Android (material design), but Quasar got rid of its iOS mode so you have to configure the UI elements manually. I hope they bring it back. Job opportunities
      Here’s where we lose out, I guess. But we have the jobs board on this forum and the jobs channel on Discord. Tooling stability
      There was a major shift from CLI v1 to v2 which resulted in many changes having to be made and there’s no automated migration tool (yet). However, if you’re starting out fresh you’ll start with CLI v2. Real apps I can check out.
      Check out my apps at https://customautosys.com/covidgame and https://customautosys.com/ketoshare.
    • R

      Boot file: how to 'wait' for $axios and cordova plugin to be available?
      Help • axios boot cordova plugins • • realtebo

      3
      0
      Votes
      3
      Posts
      273
      Views

      metalsadman

      @realtebo they are available when your app is created.

    • R

      How to config xginx api server to accept requests from android/ios apps?
      Quasar Play App • android api cordova cors • • realtebo

      6
      0
      Votes
      6
      Posts
      251
      Views

      R

      We resolvede server side on development using a proxy bypass with origin rewrite. For production server we’re unable to enable origin ‘*’ so we’ll try to add a reverse proxy or a pass through proxy like done in development.

      Thanks

    • R

      [Solved] Error: "Could not find an installed version of Gradle"
      Help • cordova gradle qusar-cli • • realtebo

      2
      0
      Votes
      2
      Posts
      1106
      Views

      R

      Never mind… instructions are changed: https://quasar.dev/quasar-cli/developing-cordova-apps/preparation

      I must install manually gradle now.

      No problem.

    • A

      Q-file not working as intended on cordova apk
      Help • apk cordova qfile • • AJisOk

      3
      0
      Votes
      3
      Posts
      833
      Views

      N

      Same issue in here. I would like use q-file or q-uploader, but in apk or in browser the behavior is different. In Browser show “chose an action” for select camera or files, but in apk not, files are selected whitout chosen an action.

      I installed plugins and permissions, but continue not working.

    • SidneiJSilva

      Access external links with WKWebView (OpenURL)
      Framework • cordova externallink ios wkwebview • • SidneiJSilva

      3
      0
      Votes
      3
      Posts
      520
      Views

      metalsadman

      Your server should handle the cors, not your frontend.

    • B

      Command "cordova" failed with exit code: null
      Help • cordova • • bernhard

      4
      0
      Votes
      4
      Posts
      650
      Views

      B

      I reinstalled node with nvm and it worked.

      For mor details, have a look at https://stackoverflow.com/questions/59973611/node-js-child-process-has-no-access-to-global-modules

    • 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

    • M

      Transpiling dependencies produces a broken build or doesn't compile at all
      Help • babel cordova typescript • • mladekt

      2
      0
      Votes
      2
      Posts
      1425
      Views

      D

      I solved it by adding

      plugins: ["@babel/plugin-transform-modules-commonjs"]

      to babel.config.js

    • wwwizzarrdry

      Cordova - How to get device IP address?
      Framework • cordova ip address • • wwwizzarrdry

      10
      0
      Votes
      10
      Posts
      2931
      Views

      S

      @wwwizzarrdry could you give code example pls? i was try using example code from documentation that plugin, but still not working

    • wwwizzarrdry

      How to Access SMB Share from Hybrid Mobile App?
      Help • cordova samba • • wwwizzarrdry

      2
      0
      Votes
      2
      Posts
      209
      Views

      wwwizzarrdry

      After searching around the XDA forums, there isn’t any mention of how to do this there either.

      Same thing with the Cordova github documentation.

      Am I to believe that in 2019, Android has no official capacity in it’s filesystem to mount samba shares? And if it does, why is there no documentation for it anywhere?

    • L

      Help run app in mobile
      Quasar Play App • cordova • • lmarcelo

      3
      0
      Votes
      3
      Posts
      493
      Views

      bekki

      I think this app has already been stopped being supported.

    • R

      Missing files in src-cordova/www
      CLI • build cordova ios quasar-cli • • rtengent

      2
      0
      Votes
      2
      Posts
      1168
      Views

      R

      I solved this problem!

      I was specifying this in quasar.conf.js to fix some routing issues that I was seeing when running “quasar dev” :

      extendWebpack(cfg) { cfg.output = { publicPath: "/", }; }

      cfg.output was not set when running “quasar dev” but it is set when running “quasar build -m cordova -T ios” and so I was inadvertently overwriting it.

      Changing it to this let me get further:

      extendWebpack(cfg) { if (!cfg.output) { cfg.output = { publicPath: "/", }; } }
    • dan-leech

      I can't run Quasar 0.16 on iOS 9 with Safari 9
      Help • cordova ios safari • • dan-leech

      6
      0
      Votes
      6
      Posts
      695
      Views

      Hawkeye64

      If you are interested in updating to Babel 7.x (which I have done), there is a great tool here: https://github.com/babel/babel-upgrade

    • K

      What is `Cordova id`?Where can I get it?
      Help • cordova • • kanjiushi

      4
      0
      Votes
      4
      Posts
      3091
      Views

      W

      The way it used to be was a namespace for your company and app name. So if my company’s name was Acme and the app is “Delivery Box”, I’d probably enter com.acme.delivery-box. Digging around in the documentation I found this: cordova create myapp com.mycompany.myteam.myapp MyApp on this page: https://cordova.apache.org/docs/en/9.x/reference/cordova-cli/index.html#directory-structure.

    • J

      Difference in js file output in Cordova build
      CLI • build cordova webpack • • jasonl

      4
      0
      Votes
      4
      Posts
      1034
      Views

      J

      Updating Quasar to 0.17.6 solved the issue.

    • J

      Object.entries error when running Cordova app on Android device
      Framework • babel cordova • • jasonl

      5
      0
      Votes
      5
      Posts
      1129
      Views

      rstoenescu

      For babel polyfill, just tamper with the .babelrc – mind that for v0.16+ u’re on Babel 7, not 6

    • D

      HTTPS Dev server with Cordova
      Help • cordova dev https server webpack • • driedler

      8
      0
      Votes
      8
      Posts
      1636
      Views

      dobbel

      has this been fixed in V1 beta too? In beta4 you still have hack quasar.conf.js to get https working for Cordova .

    • D

      Apply CSS to dynamically loaded HTML
      Help • cordova css • • dsky

      2
      0
      Votes
      2
      Posts
      831
      Views

      benoitranque

      This is most likely a cordova issue.