Android armeabi devices with API level 15+ -


i'm developing app api level 15+ has jni code , i'm wondering if there devices armeabi abi (armv5) , api level 15+

can include armeabi-v7a , x86 libraries , skip old armeabi?

android doesn't support arm versions below armv7 android 4.4 (api level 19). since android 4.0 (api level 15), doesn't support armv5/armv6 default can modified build platforms (see https://groups.google.com/d/msg/android-building/q_gu1zb6dlc/bq5qryioq_kj), , there custom builds run on armv6. i'm not entirely sure if there official, certified compatible devices run such combination (android 4.0-4.3) though - there should @ least not such certified devices running android 4.4, since compatibility definition document strictly requires armv7 version.

so in practice should pretty safe skip it, might exclude fringe third party roms doing that.

see https://stackoverflow.com/a/28926267/3115956 similar answer similar question.


Comments

Popular posts from this blog

PHP DOM loadHTML() method unusual warning -

python - How to create jsonb index using GIN on SQLAlchemy? -

c# - TransactionScope not rolling back although no complete() is called -