Thursday 11 April 2019

eclipse - Android running really slow in debug mode












I am trying to run an android application in debug mode in eclipse and it is really slow. How can I improve the performance?


Answer



It usually happens in Emulator, especially when you are reading/writing files, making calls to web-server and/or the size of your .apk file increases (large apk size causes slow installation). The best solution is to use a real device which will speed-up the installation process and enhance the overall performance of your app


No comments:

Post a Comment

php - file_get_contents shows unexpected output while reading a file

I want to output an inline jpg image as a base64 encoded string, however when I do this : $contents = file_get_contents($filename); print &q...