11

I am having a hybrid android application (Android web view + JS/HTML UI). Few day back application was working perfectly on all the devices but from last few days application is not working on Samsung S4 device Android 4.2.2.

In logs i am getting following erros while starting the app:
E/IMGSRV(22014): 0: GetPTLAFormat: Invalid format

How can i fix this issue? from the posts given on this site it looks like issue with auto play or auto navigation. How to work around this issue.

User7723337
  • 11,857
  • 27
  • 101
  • 182
  • Question is similar to http://stackoverflow.com/questions/17036238/phonegap-error-on-android-getptlaformat – Swapnil Kale Dec 11 '13 at 06:24
  • I would agree with Swannil that this looks like a similar question to http://stackoverflow.com/questions/17036238/phonegap-error-on-android-getptlaformat, the answer there looks good. – user2320365 Jan 09 '14 at 13:27

1 Answers1

-2

To hide it from Eclipse logcat, enter the following as a filter/search term in logcat:

^(?!.*(GetPTLAFormat)).*$
AmpT
  • 2,146
  • 1
  • 24
  • 25
  • Why the minus? This was the best solution I found so far :D – AmpT Jun 09 '14 at 20:39
  • 1
    This just hides the error and doesn't actually fix the problem. – Pieces Nov 25 '14 at 17:44
  • Gentlemen, there is no fix for this bug. The only way to make Eclipse logcat more managable is to hide the error. This comment wasn't meant as a fix, it was just meant to assist you in debugging to not have it spam the error repeatedly. Please don't down vote. Trying to help. – AmpT Nov 25 '14 at 20:17