我想排除内存不足的Android Manifest设备(而不是Google Store中的设备)。 使用:
uses-feature android:name="android.hardware.ram.normal" android:required="true"
排除了太多设备。
最好是排除所有具有以下功能的设备:“ android.hardware.ram.low”。
伪代码:
exclude-feature android:name="android.hardware.ram.low" android:excluded="true"
预先感谢您的回答。