Shared library missing in android.

前端 未结 8 2034
臣服心动
臣服心动 2020-12-05 01:53

02-18 00:02:08.432: ERROR/PackageManager(57): Package com.example.brown requires unavailable shared library com.google.android.maps; failing!

I got this

8条回答
  •  孤街浪徒
    2020-12-05 02:24

    I had the similar problem on a real device. After a loot of googling I found this answer

    fixing missing shared library. It turns out that on some custom roms the comp.google.android.map library is missing, you have to install it manually.

    • download googleapps
    • extract two files
    • system/etc/permissions/com.google.android.maps.xml
    • system/framework/com.google.android.maps.jar
    • remount the /system filesystem rw (mount -o rw,remount /system)
    • copy the files in
    • do a chmod 644 on them
    • reboot

提交回复
热议问题