Hi all,
I am currently having this in my AndroidManifest.xml
uses-library android:name="com.google.android.maps" android:required = "false"
I specified requirement of google map api is not compulsory. (This enables me to install my application on an none-google-api emulator)
However, this only works for API level 7, Platform 2.1 It doesn't work for API level 4, Platform 1.6
I am getting an error message when I am compiling - " No resource identifier found for attribute 'required" in package 'android'
But when I had looked at the documentation http://developer.android.com/guide/topics/manifest/uses-feature-element.html
attribute 'required' is introduced since level 4.
Could some body help me out!
Thanks Aillyn
I think it impossible to include required attribute in uses-library tag.
Is there a way to inlcude uses-libarary in the java code rather than in the AndroidManifest.xml??