简体   繁体   English

APK 64位兼容性

[英]APK 64 Bit Compatibility

I have an Android app that is published in Google Play. 我有一个在Google Play中发布的Android应用。 How can I check if it is 64-bit compliant? 如何检查它是否兼容64位?

I can not see any .so files but where to look? 我看不到任何.so文件,但在哪里可以查看?

If you do not have any .so files in your APK, you are already 64-bit compliant. 如果您的APK中没有任何.so文件,则您已经符合64位标准。

https://android-developers.googleblog.com/2019/01/get-your-apps-ready-for-64-bit.html https://android-developers.googleblog.com/2019/01/get-your-apps-ready-for-64-bit.html

APK分析仪

Where to look? 在哪里看? res folder? res文件夹? META-INF? META-INF? third_party? 第三方? or elsewhere? 还是其他地方?

As you see, there is no .so files but I do not know where to look. 如您所见,没有.so文件,但我不知道在哪里查找。

As a result is my app 64-bit compliant? 结果是我的应用程序兼容64位吗?

I am using some libraries in my app. 我在我的应用程序中使用了一些库。

You only need to worry about 64-bit compatibility if you use native (C) code. 如果使用本机(C)代码,则只需担心64位兼容性。 This gets compiled as an .so file - if you do not have any native code and only use Java/Kotlin, then your code is already 64-bit compliant. 该文件将编译为.so文件-如果您没有任何本机代码,而仅使用Java / Kotlin,则您的代码已经符合64位标准。

From your screenshot, you are good to go. 从屏幕截图中,您可以轻松进行。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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