I am new to android. In my application I tried to call a SOAP web service, but when I run the project it says: Required API is 9,but Device API is 8.
What can I do for that.
I am new to android. In my application I tried to call a SOAP web service, but when I run the project it says: Required API is 9,but Device API is 8.
What can I do for that.
This means that a method or class you have used in your code wasn't added to Android until API revision 9 (Gingerbread, see this list).
If you want your app to run on a lower API version, you'll have to either remove that call, or use reflection (described here if you need it) to check for it's availability. Either way you'll have to find another way to do what you're wanting on lower API versions.