Android应用问题: Re-installation failed due to different application signatures.

程序安装的时候换虚拟设备的版本

在更改了AndroidManifest.xml中的<uses-sdk android:minSdkVersion="版本号" />

default.properties中的target=android-10

但是呢还是出了如下的错误·····

[2011-10-11 21:03:50 - TestListView] Re-installation failed due to different application signatures.

[2011-10-11 21:03:50 - TestListView] You must perform a full uninstall of the application. WARNING: This will remove the application data!
[2011-10-11 21:03:50 - TestListView] Please execute 'adb uninstall com.example.android' in a shell.

[2011-10-11 21:03:50 - TestListView] Launch canceled!

原因没搞清楚

解决方法:
1. 检查当前项目的android SDK platform版本配置是否正确,确保与AVD的一致;
2. 完全卸载AVD上已经安装的版本
在命令行中执行adb uninstall com.example.android,也就是错误中的倒数第二行中的命令。
( 执行命令之前,请确保Adnroid SDK platform-tools目录已添加入path环境变量 
    我的电脑-> 属性 -> 高级 -> 环境变量 -> 系统变量, 在path变量中添加Adnroid SDK tools的路径,保存即可。



你可能感兴趣的:(android,application,Path,tools)