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. Alvsky
    A
    • Profile
    • Following 0
    • Followers 0
    • Topics 3
    • Posts 8
    • Best 1
    • Groups 0

    Alvsky

    @Alvsky

    2
    Reputation
    10
    Profile views
    8
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    Alvsky Follow

    Best posts made by Alvsky

    • Android Home Widget

      Hi all
      did someone tried to make an android app with that has a home screen widget.
      All links I found lead to an outdated and unsupported git repository plugin (cordova-plugin-ace) which I can not use (or just don’t know how 🙂 ).

      Any help is appreciated

      posted in Help
      A
      Alvsky

    Latest posts made by Alvsky

    • RE: [Solved] Cordova App Displays Blank Page

      Thanks for the reply.
      My aim was not to imply whos issue is that but to see if someone had same experience and how it was solved.

      I did some more digging and ran into a cordova-plugin-crosswalk-webview-v3
      But the drawback is tha it adds about 17MB to the apk which is too much.

      So if someone had this kind of problem and has solved it some other way it would be helpful

      posted in Help
      A
      Alvsky
    • RE: [Solved] Cordova App Displays Blank Page

      I know this thread is old but this behavior is still present and I am facing it also.

      Nevertheless is there any chance to make quasar work on android 4.4?

      My problem is that I have an app that people want to run on their spare old tablets which are mostly running Android 4.4.

      posted in Help
      A
      Alvsky
    • Android Home Widget

      Hi all
      did someone tried to make an android app with that has a home screen widget.
      All links I found lead to an outdated and unsupported git repository plugin (cordova-plugin-ace) which I can not use (or just don’t know how 🙂 ).

      Any help is appreciated

      posted in Help
      A
      Alvsky
    • RE: Google Analytics: sessionId is not defined

      I managed to solve my problem, although I still don’t know why it’s not working without this solution.
      So, in order to avoid “sessionId is not defined” error I created a random session ID using uid() function in google-analytics.js instead of sessionID.

      import { uid } from 'quasar'
      import ga from '../analytics.js'
      
      export default ({ router }) => {
        router.afterEach((to, from) => {
          ga.logPage(to.path, to.name,  uid())
        })
      }
      

      I hope this can help someone although I am still not sure if it is the right way as I just recently started to use Quasar and GA

      posted in Help
      A
      Alvsky
    • RE: Google Analytics: sessionId is not defined

      One more thing, when I deploy SPA app ($ quasar dev) everything works fine and I can see 1 active user in Google Analytics.
      This only happens when I start the app with:
      $ quasar dev -m android

      posted in Help
      A
      Alvsky
    • Google Analytics: sessionId is not defined

      Hi
      I am trying to implement GA to my mobile android app and I got stuck at “sessionId is not defined” error:

      Uncaught (in promise) ReferenceError: sessionId is not defined
          at eval (google-analytics.js?91fb:5)
          at eval (vue-router.esm.js?4af9:2176)
          at Array.forEach (<anonymous>)
          at HashHistory.updateRoute (vue-router.esm.js?4af9:2175)
          at eval (vue-router.esm.js?4af9:2037)
          at eval (vue-router.esm.js?4af9:2159)
          at step (vue-router.esm.js?4af9:1843)
          at step (vue-router.esm.js?4af9:1850)
          at step (vue-router.esm.js?4af9:1850)
          at runQueue (vue-router.esm.js?4af9:1854)
      

      in file “google-analytics.js?91fb:5”

      import ga from '../analytics.js'
      
      export default ({ router }) => {
        router.afterEach((to, from) => {
          ga.logPage(to.path, to.name, sessionId)
        })
      }
      

      I created everything following tutorial from Quasar help and Multiminds tutorial but I can not figure out why the SessionID is undefined.
      I tried to set it as constant and the result is the same.

      I also installed the app on my cellphone but I can not see any data on Google analytics.

      Does anyone has any idea what am I doing wrong?

      thanks

      A.

      posted in Help
      A
      Alvsky
    • RE: Multiline q-tab label

      Thanks for the answer.
      it is just what I wanted

      posted in Framework
      A
      Alvsky
    • Multiline q-tab label

      Hi all
      how can I achieve to have a tab with Icon and label but the label should have 2 (or more) rows like this:

      f95ebbf9-05db-4d35-83e7-c5b514ee2f78-image.png

      posted in Framework
      A
      Alvsky