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. pd76
    3. Best
    P
    • Profile
    • Following 1
    • Followers 0
    • Topics 1
    • Posts 24
    • Best 4
    • Groups 0

    Best posts made by pd76

    • RE: Cordova plugin is always undefined

      Ok, weirdo. I tried to install the plugin in a “base” quasar project and everything works with no errors. By “base project” I mean: answer no to all the questions at quasar init phase, especially don’t use a linter (I really think this is the point…).

      Then I created project2 answering yes to all, and got the same your issue:

      /tmp/project2/src/pages/index.vue
        24:18  error  'FileTransfer' is not defined  no-undef
      
      ✖ 1 problem (1 error, 0 warnings)
      

      In project2 then I tried to disable the linter… and everything worked as expected (I disable the linter commenting the body of extendWebpack (cfg) in quasar.conf.js, not sure if it’s the right way but the linter was disabled).

      index.vue:

      <template>                                                                                                                         
        <q-page class="flex flex-center">
          <div>
            {{ foo }}
          </div>
          <img alt="Quasar logo" src="~assets/quasar-logo-full.svg">
        </q-page>
      </template>
      
      <style>
      </style>
      
      <script>
      export default {
        name: 'PageIndex',
        data: function () {
          return {
            foo: ''
          }
        },
        created: function () {
          this.foo = FileTransfer
        }
      }
      </script>
      

      Well, hope this gives you some help. Let us know.

      0_1523689118852_Screenshot_2018-04-13_18-06-51.png

      posted in Help
      P
      pd76
    • RE: ~~Do not upgrade to Vue 2.4.x (yet)~~ Edit: Safe to upgrade

      https://github.com/vuejs/vue/pull/6107

      posted in Announcements
      P
      pd76
    • RE: Installed apk generated by quasar dev / build command does not work in Android

      @ksathya said in Installed apk generated by quasar dev / build command does not work in Android:

      When I use ‘build for production’ command (quasar build -m cordova -T android -t mat) and try to copy the apk generated, the device says ‘App cannot be installed’.

      Hey same here. Were you able to make it run and how do I see logs on the phone?

      The command I run (I don’t see any error message during the process):

      $ quasar build -m cordova -T android -t mat
      

      Update:
      I was able to fix my issue signing the apk as described in the docs. Not sure if I hijacked this thread, apologies if this happened.

      posted in Help
      P
      pd76
    • RE: Installed apk generated by quasar dev / build command does not work in Android

      @ksathya yep!!! my earlier update confirms that! (sorry for not mentioning you). http://forum.quasar-framework.org/topic/1979/installed-apk-generated-by-quasar-dev-build-command-does-not-work-in-android/6

      posted in Help
      P
      pd76