ADT said that version 11 brings ListView and GridView Rendering, however it’s disabled in my eclipse and shows: “not supported for this SDK version; try changing the Render Target”.
I tried changing the render target but no help there.
Suggestions?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Ensure, that you have included in android manifest something like that:
targetSdkVersion is parameter determining which API level will be used by your applicaton.
minSdkVersion indicates if device will be able to install your app, but you have to ensure, that all API incompatibilities are handled by you manually in code (i.e. by reflections)