简体   繁体   中英

Limit an android app only to armv7 devices

I am now developing a game which runs fine on the ARM v7 devices, but there are problems with the ARM v6 devices. Is there a way to limit the game only for ARM v7 devices?

If you set APP_ABI in Application.mk to just produce ARM v7 ( armeabi-v7a ) compatible libraries, Android Market / Google Play should filter non ARM v7 devices from seeing your application.

APP_ABI := armeabi-v7a

If you don't have a native part in your application, you can still create a simple stub library to get filtering in the Google Play.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM