I'm trying to configure my app to exclude x86 device in google player by using ndk. And i have made a test app to verify this case. But after published test app, my x86 device (CPU Intel Atom Z2580) can also find it in google player. Code in Apllication.mk
APP_ABI := armeabi
and the c source code
(JNIEnv *env, jobject obj) {
return (*env)->NewStringUTF(env, "Hello From C !");
Is there anything wrong with my configuration? How can i exclude x86 device in google player?