According to Does your app use native code?,
For the ARM architecture, the 32-bit libraries are located in armeabi-v7a
. The 64-bit equivalent is arm64-v8a
.
For the x86 architecture, look for x86 for 32-bit and x86_64
for 64-bit.
So,
how do we identify a library which is developed in NDK?
Similarly as .apk
, you can inspect the directory structure of the library, i.e. the .aar
, has directories like lib/arm64-v8a/xxx.so
or lib/x86_64/xxx.so
, if yes, it means this .aar
is developed as 64-bit
.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…