I need to limit my app to only run on screen small, medium and large screens but not xlarge. I can’t write it in the manifest since the build is on 2.2.
Share
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.
You won’t need to do anything in the manifest file. The
xlargetag was introduced in Android 2.3, so it won’t be relevant in your case.Updated
If you want to make sure that xlarge devices can’t use it, you should put this in your application manifest file and change the target API to level 9 (Android 2.3, in which the tag was introduced) and the minimum SDK level to something lower, i.e. 8 for Android 2.2.