@rajdevwilson0991 Are you the same user who sent us a support ticket regarding the same issue under Frank De Smedt
name? If so, we have replied back to your ticket since October 17th with a backup version of your project as well. Please check it out. I’ve just replied back to you again today. Sorry for the inconveniences.
-
RE: All plugins lost
-
RE: Lost all plugins suddenly!
@rajdevwilson0991 Are you the same user who sent us a support ticket regarding the same issue under
Frank De Smedt
name? If so, we have replied back to your ticket since October 17th with a backup version of your project as well. Please check it out. I’ve just replied back to you again today. Sorry for the inconveniences. -
RE: Monaca Cloud IDE not running any projects (including sample projects)
@bethewater Based on your email here, I found your Monaca account. I tested two of your projects and they are all working fine including the debugger panel.
-
RE: Monaca IDE issues
-
Can’t preview apps: usually when this case happens, you can just reload the browser as shown in the Preview Log panel. If that is still not working, there might something wrong with your project, especially if it is a transpilable project. You might need to remove the
node_modules
folder and runnpm install
in a new terminal window to fix this issue. -
Duplicated display of newly added plugin: This has been fixed. I’ve just tried adding a plugin again, and it doesn’t show the duplication anymore.
-
Slow Settings dialog in Localkit: Whenever you opening Build/Setting Windows, your project will be uploaded/synced with Monaca Cloud. If it is the first time the project is synced, it will take some time. Later on, it should be much faster.
-
Misleading message: This case should only happen when there is something wrong with the Cordova configuration in your PC. In order to fix this issue, you can just remove
.cordova
folder. Please also make sure to use the latest version Monaca Localkit to ensure the best performance. Currently, the latest one is3.0.1
.
Thanks for your feedback.
-
-
RE: Monaca Cloud IDE not running any projects (including sample projects)
@bethewater Based on the log, everything seems fine. When you said nothing was working, what did you mean by that? Was the Previewer not working? Or something else happened?
If the Previewer is not working, you can try to restart the Preview Server Container by clicking on the refresh button at the Preview Log panel as shown below:
-
RE: ITSAppUsesNonExemptEncryption addition config.xml not working
@jamal Yes, your configuration is correct. Make sure you have Cordova Custom Config plugin enabled in your project before using this configuration.
-
RE: Monaca upload command extremely slow.
@j4hangir I imported your project and tested the
monaca upload
command. The reason why it took so long to upload your project is because of your plugins’ files. You have 17 plugins in theplugins
folder which are not even used in your project. You don’t need to store these plugins’ files in your project when you are importing them via their package names as configured inpackage.json
file. Therefore, just remove them. Your project will be uploaded much faster without them. And yes your project will still be working as usual. -
RE: Monaca upload command extremely slow.
@j4hangir I tested
monaca upload
command on Monaca CLI3.0.2
. I uploaded a new project (119MB) to Monaca Cloud and it took about 100 seconds. I made some changes to project files and uploaded again. It took about 30 seconds.How big is your project? Is it a normal Cordova or transpilable projects? We can help looking at your project and see what might be the causes.
-
RE: Mailer Templates
@rmoore Sorry for a late reply. Here is how to use the parameter with the email template. First, create a template as shown here:
Here is a sample code for SendMail function:
monaca.cloud.Mailer.sendMail(UserOid, "DemoTemplate", {"name": "Khemry Khourn"}) .done(function(result) { if (result == "OK") { console.log("The email is sent successfully."); } }) .fail(function(err) { console.log("Error #" + err.code +": " + err.message); });
-
RE: Adding `cordova.plugins.notification.local`
@j4hangir How did you test the project? If you are using Monaca Debugger, please make sure to use custom built Monaca debugger (build from IDE). The store-version Monaca Debugger (from AppStore/Google Play) doesn’t contain any 3rd party Cordova plugins besides core Cordova plugin.