hm. Wirklich keine CPU-Filter?
http://developer.android.com/google/play/filters.html
Dort steht:
Zitat:
...An application that includes native libraries that target a specific CPU architecture (ARM EABI v7 or x86, for example) are visible only on devices that support that architecture. ...
OK aber wie und wo stelle ich das ein? Und warum macht das nicht die
IDE von selbst?
Folgendes habe ich gefunden:
Zitat:
Supporting multiple CPU architectures
When using the Android NDK, you can create a single APK that supports multiple CPU architectures by declaring each of the desired architectures with the APP_ABI variable in the Application.mk file.
For example, here's an Application.mk file that declares support for three different CPU architectures:
APP_ABI := armeabi armeabi-v7a mips
APP_PLATFORM := android-9
Aber was muss ich machen das Devices mit x86CPU meine App
nicht gelistet bekommen?
Mavarik