简体   繁体   English

如何在AOSP中执行从Google Play下载的APP?

[英]How to execute APP downloaded from Google Play in AOSP?

I succeed AOSP build in Nexus 4 and install google apps. 我成功在Nexus 4中建立了AOSP,并安装了Google应用。

Also, I tried download app from google play and succeed install. 另外,我尝试从Google Play下载应用程序并成功安装。

But, When I execute that app, failed execute. 但是,当我执行该应用程序时,执行失败。

So, check the Logcat I can find 'load .so failed' error in android run time. 因此,请检查Logcat我可以在Android运行时中找到“加载.so失败”错误。

Why doesn't working? 为什么不起作用?

Please, how can I find solution this problem? 请,我如何找到解决这个问题的方法?

The short answer is: You probably can't fix this yourself. 简短的答案是:您可能无法自己解决此问题。

The *.so files probably are native running libraries the developer of the app used in his code. * .so文件可能是本机运行库,开发人员在其代码中使用了该应用程序。

One guess: Android 5 is capable of 64bit now. 一个猜测: Android 5现在支持64位。 While the Java part of the code works automatically with 64bit, the so-files need to be prepared for it by the developer. 尽管代码的Java部分会自动以64位运行,但是开发人员需要为其准备so-file。

Another guess: The new ART Runtime causes problems in JNI. 另一个猜测:新的ART运行时会在JNI中引起问题。 For developers, see this: http://developer.android.com/guide/practices/verifying-apps-art.html and 对于开发人员,请参见: http : //developer.android.com/guide/practices/verifying-apps-art.html

You should contact the developer and ask whether he checked his App on Android 5. 您应该联系开发人员,并询问他是否在Android 5上检查了他的App。

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

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