在andorid进行调试的过程中,出现下面的错误:
解决方法:
修改一下应用程序描述符:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.helloword"
android:installLocation="auto"
android:versionCode="1"
android:versionName="1.0" >
修改上面的参数就可以了。
本文共 241 字,大约阅读时间需要 1 分钟。
在andorid进行调试的过程中,出现下面的错误:
解决方法:
修改一下应用程序描述符:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.helloword"
android:installLocation="auto"
android:versionCode="1"
android:versionName="1.0" >
修改上面的参数就可以了。
转载地址:http://pupjo.baihongyu.com/