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. luisdev
    L
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 6
    • Best 3
    • Groups 0

    luisdev

    @luisdev

    7
    Reputation
    3
    Profile views
    6
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    luisdev Follow

    Best posts made by luisdev

    • RE: Adding 3rd party plugins to capacitor app

      Found out how its done:

      cd into src-capacitor folder: npm install capacitor-plugin-name

      then open file at src-capacitor/android/app/src/main/java/MainActivity.java

      there you will:
      import com.plugin-name
      and
      add(plugin-name)

      make sure neither your server nor your quasar client server is running otherwise you’ll get a bunch of ‘mkdir’ errors*

      then while remaining in src-capacitor you will run “npx cap sync android”

      go back to your quasar client and run “quasar dev -m capacitor -T android”

      make sure your server is still off and update your gradle on Android studio

      afterwards you will find the new plugin inside Plugins object in “@capacitor/core”

      you should be set to go. You’re welcome fellow newbie!

      posted in Framework
      L
      luisdev
    • RE: Calling v-close-popup from QSelect-option

      <q-menu ref=“menu”>
      …
      </q-menu>

      then in myMethod call:
      myMethod () {
      this.$refs.menu.hide()
      console.log(‘I want to v-close-popup’)
      }

      posted in Framework
      L
      luisdev
    • RE: Android notifications

      Firebase cloud messaging acts as a middleman for this service. The service is completely free, but you do need to implement their library in your client as well as in your server. From there your server will communicate with firebase api, and firebase will send the push notifications to the specified devices.

      I believe this is the plugin for cordova:
      https://ionicframework.com/docs/native/push

      for your server side library:
      https://firebase.google.com/docs/cloud-messaging

      posted in Framework
      L
      luisdev

    Latest posts made by luisdev

    • RE: Android notifications

      Firebase cloud messaging acts as a middleman for this service. The service is completely free, but you do need to implement their library in your client as well as in your server. From there your server will communicate with firebase api, and firebase will send the push notifications to the specified devices.

      I believe this is the plugin for cordova:
      https://ionicframework.com/docs/native/push

      for your server side library:
      https://firebase.google.com/docs/cloud-messaging

      posted in Framework
      L
      luisdev
    • RE: Calling v-close-popup from QSelect-option

      <q-menu ref=“menu”>
      …
      </q-menu>

      then in myMethod call:
      myMethod () {
      this.$refs.menu.hide()
      console.log(‘I want to v-close-popup’)
      }

      posted in Framework
      L
      luisdev
    • RE: Adding 3rd party plugins to capacitor app

      Found out how its done:

      cd into src-capacitor folder: npm install capacitor-plugin-name

      then open file at src-capacitor/android/app/src/main/java/MainActivity.java

      there you will:
      import com.plugin-name
      and
      add(plugin-name)

      make sure neither your server nor your quasar client server is running otherwise you’ll get a bunch of ‘mkdir’ errors*

      then while remaining in src-capacitor you will run “npx cap sync android”

      go back to your quasar client and run “quasar dev -m capacitor -T android”

      make sure your server is still off and update your gradle on Android studio

      afterwards you will find the new plugin inside Plugins object in “@capacitor/core”

      you should be set to go. You’re welcome fellow newbie!

      posted in Framework
      L
      luisdev
    • Adding 3rd party plugins to capacitor app

      I’m having an issue installing this “capacitor-navigationbar” plugin to my Capacitor app. I found my MainActivity.java file, however I do not know where I import the module as the plugin docs suggest I do. Any guidence will be extremely appreciated, thanks!

      both.png

      posted in Framework
      L
      luisdev