Navigation

    Quasar Framework

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. realtebo
    R
    • Profile
    • Following 0
    • Followers 0
    • Topics 19
    • Posts 34
    • Best 3
    • Groups 0

    realtebo

    @realtebo

    3
    Reputation
    44
    Profile views
    34
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    realtebo Follow

    Best posts made by realtebo

    • RE: [Solved] How can we test $q.platform on boot files?

      Solved… read the doc. …

      // import something here
      import { Platform } from 'quasar'
      
      export default async (/* { Vue } */) => {
        if (!Platform.is.mobile) {
          return
        }
      
      posted in Help
      R
      realtebo
    • RE: How to config xginx api server to accept requests from android/ios apps?

      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

      posted in Quasar Play App
      R
      realtebo
    • q-scroll-area: why has not height?

      I’ve a q-scroll-area with some paraph inside. But it shows nothing. It’s zero pixel heigh.
      What’s the trick with this component, exsential when developing for mobile?

      posted in Help
      R
      realtebo

    Latest posts made by realtebo

    • RE: How to config xginx api server to accept requests from android/ios apps?

      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

      posted in Quasar Play App
      R
      realtebo
    • Boot file: how to 'wait' for $axios and cordova plugin to be available?

      I a new boot file I’ve the need to use both a cordova plugin and axios.

      Is there a way to be sure that axios and cordova plugins are really available before trying to use them?

      posted in Help
      R
      realtebo
    • RE: [Solved] How can we test $q.platform on boot files?

      Solved… read the doc. …

      // import something here
      import { Platform } from 'quasar'
      
      export default async (/* { Vue } */) => {
        if (!Platform.is.mobile) {
          return
        }
      
      posted in Help
      R
      realtebo
    • [Solved] How can we test $q.platform on boot files?

      I’m initializing a db using a cordova plugin.

      I’d like in the boot to detect if app is running on mobile, before even try to open db.

      I tried the following

      export default async ({ Vue }) => {
        if (!Vue.$q.platform.is.mobile) {
          return
        }
      ...
      

      But Vue.$q is undefined here

      posted in Help
      R
      realtebo
    • RE: @quasar/app v2.1.1 released!

      Could I ask what is app v2?

      Aren’t we at 1.14?

      posted in Announcements
      R
      realtebo
    • Ask for suggestions about background tasks

      Hi !

      I’ve the need to handle some time (and resource) consuming background task in our app.

      I’ve the need to allow user to navigate from page to page, but having a little indicator on the top [in the main layout file] that show progression of what is happening behind scenes.

      The problem is not here.

      The problem is HOW to keep a long task running in background in a quasar app.

      I could use a boot file to start the task, but I need to avoid UI blocks.

      If any, could you sdhare with me any suggestions?

      posted in Help
      R
      realtebo
    • RE: How to config xginx api server to accept requests from android/ios apps?

      I understand it’s most server side. But I cannot understand why quasar app has this problems while native java android app has not problem doing requests to web services.

      posted in Quasar Play App
      R
      realtebo
    • How to config xginx api server to accept requests from android/ios apps?

      I’m developing a web app since a while. Now we’re tring to run it as a mobile app (android only in this moment).

      We stopped becase all api calls from mobile app is being blocked because of cors policy.

      I’ve not a clear idea of how cors headers and preflight options calls works.

      Anyway, I ask you kindly if there is something from quasar app code side to be done to be able to make api calls.

      I never faced problem in calling apis using native java android apps. I stupidly thinked it wil not be a problem in a quasar cordova mode app.

      Please, help me to understand what should I do to allow my app to make api calls.

      posted in Quasar Play App
      R
      realtebo
    • RE: [Solved] Error: No Java files found that extend CordovaActivity.

      Damn… Turn Off and Turn On … First rule of IT …

      I resolved simply doing …

      cd cordova-src
      cordova platform remove android
      cordova platform add android
      
      posted in Help
      R
      realtebo
    • [Solved] Error: No Java files found that extend CordovaActivity.

      I am on windows 10

      Running quasar dev -m cordova -T android

      I got this

      DONE  Compiled successfully in 18249ms                                                                          9:50:30
      
      i 「wds」: Project is running at http://192.168.20.43:3000/
      i 「wds」: webpack output is served from
      i 「wds」: 404s will fallback to /index.html
      
      App · Updated Cordova config.xml
      App · Running "cordova run android"
      
      No Java files found that extend CordovaActivity.
      
      App · Command "cordova" failed with exit code: 1
      App · Updated Cordova config.xml
      App · ⚠️  [FAIL] Cordova CLI has failed
      

      What is this?

      posted in Help
      R
      realtebo