Restrict Density In Api 7
How can I restrict density in Manifest in early version than API 9. As I know since this API there is a tag
Solution 1:
You can simple set your target SDK
version to 9, and minSDK
version to whatever you want. This way the density will be restricted on devices with API version 9 and higher, and on devices with API version lower than 9 only the screen size parameter will be checked. AFAIK, there's no other way to resolve this problem.
Post a Comment for "Restrict Density In Api 7"