Possible Duplicate:
How to exlude all the devices which have low GPU in Android Manifest?
Yesterday, I created a live wallpaper for Android and tried it in my Droid X, Galaxy S, and Fascinate. And I noticed that it runs smootly in Galaxy S and Fasciante but not in Droid X which has lower GPU. So far I can only eliminate a specific devices which has normal-xlarge screen using the code below. But it does not specifically tell whether it has lower GPU. My question is, is there anyway to exlude other devices with lower GPU?
<manifest ... >
<supports-screens android:smallScreens="false" android:normalScreens="false" android:largeScreens="false" android:xlargeScreens="true"
android:requiresSmallestWidthDp="600" />
</manifest>