Hi, i am trying to generate a sign apk with android studio. But i am getting an error in the manifest file, (i didn’t even touch this file, it was generated with cordova commands follwing the quasar tutorial).
M
Latest posts made by MathSilva
-
ERROR WHEN TRYING TO GENERATE SIGN APK IN ANDROID STUDIO
-
RE: WHERE IS MAIN.JS IN QUASAR?
@shone i have read that, acctually all the documentation, but how can i call an action when the whole application starts? I was doing that with main of vue it was working fine. But i need to do it in quasar. I mean i don’t want to call this action when a single component loads, cuz i could call it directly in the component, but in the whole application.
-
WHERE IS MAIN.JS IN QUASAR?
I am calling an action with VUEX and i check if user is authenticated in the life cycle CREATED through main.js with vue without quasar
created() { this.$store.dispatch('loadUserData'), firebase.auth().onAuthStateChanged(function(user) { if (user) { // add user into the store } }); }
What can i do to call some action in quasar when all my application start, since these current versions there is not the main.js
#quasar #doubt