无法安装.apk文件

时间:2012-12-13 07:52:25

标签: android apk

当我尝试执行.apk文件时,出现以下错误 * install_failed_missing_shared_library *

5 个答案:

答案 0 :(得分:2)

在命令提示符下cd到adb的路径(导航到SDK的platform-tools /目录) 然后执行命令

adb -d install path/to/your/app.apk

例如:

adb -d install C:/Users/users2/Desktop/adt-bundle-windows-x86/sdk/tools/my.apk

检查http://developer.android.com/tools/building/building-cmdline.html#RunningOnDevice

答案 1 :(得分:1)

您需要将adb文件夹添加到环境变量或使用如下脚本

  

转到那里 - > cd C:/   用户/ users2 \桌面\ ADT-束窗口86 \ SDK \工具。

当你在文件夹中时,

C:/ Users / users2 \ Desktop \ adt-bundle-windows-x86 \ sdk \ tools \

  

C:.....你的sdk folde ... \ platform-tools \ adb install fileName.apk

使用Google Maps for Android获取INSTALL_FAILED_MISSING_SHARED_LIBRARY错误:

1)安装Google地图API。这可以在Eclispe Windows / Android SDK和AVD Manager中完成 - >可用套餐 - >第三方附加组件 - > Google Inc. - >谷歌公司的谷歌API,Android API X

2)从命令行创建新的AVD。这可以通过列出目标(android列表目标)来完成,然后android create avd -n new_avd_api_233 -t“Google Inc.:Google APIs:X”

3)然后在Eclipse Windows / Android SDK和AVD Manager中创建AVD - >新... - > (名称:new_avd_X,目标:Google API(Google Inc.) - API级别X)

4)在Eclipse File / New / Android Project中创建Android项目,然后选择Google API Build Target。

5)添加< uses-library android:name =“com.google.android.maps”/> 之间<应用程序> < /应用程序>标签

5)将Project作为Android应用程序运行。

如果错误仍然存​​在,那么您仍有问题,如果有效,那么此错误将永远在您身后。

答案 2 :(得分:1)

  1. 启动模拟器。
  2. 现在启动控制台(在Windows平台中),运行 - >输入 cmd ,    并转到SDK目录的 platform-tools 文件夹。
  3. 将APK文件粘贴到'platform-tools'文件夹中。

  4. 然后输入以下命令。

  5.   

    adb install [apk文件名]

    示例:

      

    adb install appname.apk

答案 3 :(得分:1)

首先执行模拟器。

然后运行 ​​- >键入 cmd ,然后转到 SDK 目录的 platform-tools 文件夹。 (通常为C:\Program Files\Android\android-sdk\platform-tools)。

APK文件粘贴到platform-tools文件夹中。

然后输入以下命令。

adb install [apk file name]

示例:

adb install my.apk

答案 4 :(得分:1)

嗨,试试这个网站真的很有帮助。

http://3zwireless.com/Android1.html