DaveR
DaveR

Reputation: 2483

Using Apache Cordova/PhoneGap with Android 2.x

It seems that it isn't possible to create a PhoneGap app for Android 2.x. Is that right?

Upvotes: 2

Views: 8843

Answers (2)

Akilan
Akilan

Reputation: 1717

For running android applications using phonegap build your application as Android 4.0.3 and set the minimum version to the lower version whatever you want. Basically Android 4.0.3 build does not affect the functionalities of the older android version. And this app perfectly works with android lower versions.

I usually do like this in manifest.xml

<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="15"/>

Upvotes: 8

DaveR
DaveR

Reputation: 2483

Okay - so answering my own question. You need Android API mark 15 installed for PhoneGap to work.

But . . . you can change the AndroidManifest.xml file in the application to make it backwards compatible.

For example

<uses-sdk android:minSdkVersion="10" />

will be compatible with 2.3.3

Upvotes: 4

Related Questions