Ionic Cordova
I implemented the ionic Cordova document scanner last year it worked fine when I implemented it but showing this warning for the last 1 month, but my app is working fine.
I have attached a screenshot of the same.
error message
Related
I am beginner at flutter development.Completed my first app and also pushed to playstore.But after downloading the the app each click take more time to get the response and also the UI is incomplete.How can i find out the isuues with my app?
For each click its takes around 20 seconds respond
In my app using number picker dialog it popup after 20 seconds delay
Steps followed :
Tested with apk in numerous emulators and found no issues
tested in local android phone and found no issues
released in play store with .aab format and performance issue pops up
Thanks in adavance
I have built a dummy flutter app and integrated it with revenue cat. Have put app in closed testing and followed all steps mentioned in the docs. Able to subscribe to plans and when plan is subscribed I am getting a mail to for payment confirmation (Sandbox). Problem is when I check firebase as well as revenue cat I am not seeing any android specific data there. For iOS it's working as expected. Any Pointers?
I found the problem. Issue was package name in revenuecat was not same as in playstore. Strangely, for iOS we had same issue but it was working.
After changing package name, it immediately started working.
I’m tried create new blank project ionic and after that I straight add android device with syntax ‘ionic cordova platform add android’, and in my file ‘main.ts’ I add some code 'enableProdMode().
Then I run to my device with syntax ‘cordova run android’ and ‘cordova run android --prod’. But the problem is in my first device (xiaomi mi 5) time of starting app is 5 second (I think that normal), but in my second device (samsung galaxy pro) time of starting app is about 20second (I think that not normal, it’s too long for open apps). So how to boost time starting app in some device which is too long open app?
note : there no other code, I just create project and run
Thanks
To increase the performance on the start you must implement the lazy loading using ionic page like this https://blog.paulhalliday.io/ionic-3-lazy-loading-components/
And turn off the components you don't need on the start.
#IonicPage({
name: 'my-page',
priority: 'off'
})
Another way is using the method ngOnInit() to leave the constructor clean and execute some functions after the component has start.
weird issue happen me just, i'm trying to run my project and i saw other app with this photo
i opened a new project, even change the file directory and see the same image.
is this any issue with ionic 2??
i solved it by clear cache in chrome.
I have a strange issue with Cordova hybrid application built on AngularJS. I have a page which has date attributes and here my issue
Go to any date time picker page in the application
Minimize the application
Goto system date&time settings
Change date and time to a past date (future date is working fine)
Launch back the application from background
It seems that the application freeze totally without an error message. I am testing the application on iPhone with iOS 7.x version. Any help on this would be much appreciated.
Thanks!