Art Grc
Art Grc

Reputation: 573

Application Error on Android Phonegap

Im testing a simple html file with some input fields and two buttons, after installing the apk file on my android device everything seems well, but when I rotate the screen I receive the following error enter image description here

Im using a samsung galaxy s3 mini with android 4.1.2.

Im using the latest phonegap and eclipse juno.

How can I fix (or hide) this error?

Upvotes: 2

Views: 211

Answers (1)

fish
fish

Reputation: 818

You should add android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale" to your activity in the AndroidManifest.xml, like recommended in the PhoneGap API Documentation

Upvotes: 2

Related Questions