简体   繁体   中英

How to execute APP downloaded from Google Play in AOSP?

I succeed AOSP build in Nexus 4 and install google apps.

Also, I tried download app from google play and succeed install.

But, When I execute that app, failed execute.

So, check the Logcat I can find 'load .so failed' error in android run time.

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.

One guess: Android 5 is capable of 64bit now. While the Java part of the code works automatically with 64bit, the so-files need to be prepared for it by the developer.

Another guess: The new ART Runtime causes problems in JNI. For developers, see this: http://developer.android.com/guide/practices/verifying-apps-art.html and

You should contact the developer and ask whether he checked his App on Android 5.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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