In my playing with Android, I've had some issues with this as well. Here's what I've found:
In the template AndroidManifest, it specifies version level 8 (should this be 7 then?): https://git-wip-us.apache.org/repos/asf?p=incubator-cordova-android.git;a=blob;f=bin/templates/project/AndroidManifest.xml;h=9e9abcdf9273a5d5c38c71481e8de71761c617e2;hb=HEAD#l60 The framework AndroidManifest specifies version 2 (this should certainly match the template's value): https://git-wip-us.apache.org/repos/asf?p=incubator-cordova-android.git;a=blob;f=framework/AndroidManifest.xml;h=92f66f449b31fefd8edd969d1cc4bc363a5d709f;hb=HEAD#l67 Once updating the value in the framework's manifest, Eclipse complains about one of CordovaWebView's constructors calling a super-constructor that is new in API version 11 (privateBrowsing). https://git-wip-us.apache.org/repos/asf?p=incubator-cordova-android.git;a=blob;f=framework/src/org/apache/cordova/CordovaWebView.java;h=f7f2be6f7bd87ed89abe44dc99dca9e2bbe4c384;hb=HEAD#l161 Adding @TargetSdk(11) fixes this warning. Is that the correct fix though? On Sun, Aug 12, 2012 at 1:09 PM, Viras <[email protected]> wrote: > It would be nice to somehow specify the supported API levels in the docs > - wouldn't it? > > Maybe even dependent on each plugin, since if not all plugins are > required it might be possible to support even lower API versions? > > Just an idea thought! > > Best, > Wolfgang > > Am 11.08.2012 01:30, schrieb Shazron: > > Thanks Simon! Ah ok - in 2.0.0 in the example/template manifests it > > specified API level 5. > > > > On Fri, Aug 10, 2012 at 4:22 PM, Simon MacDonald > > <[email protected]> wrote: > >> We support 2.1 (API level 7) and up. We make sure if we use an API call > >> from a later release of Android that it isn't called on an OS that > doesn't > >> support it. > >> > >> Simon > >> On Aug 10, 2012 6:47 PM, "Shazron" <[email protected]> wrote: > >> > >>> This is a question from a dev using CDV 2.0.0 > >>> > >>> I believe we are only supporting Android 2.0 (api level 5), but he > >>> asks how come there is some code that references Android 3.0 features? > >>> Not an Android dev obviously, can someone enlighten me? Thanks! > >>> > > > > > -- > GOFG - Get On Fat Guy > http://www.gofg.at/ - powered by PhoneGap >
