Android 2.3.4 上的应用程序未安装错误 [英] Application not Installed' Error on Android 2.3.4

查看:39
本文介绍了Android 2.3.4 上的应用程序未安装错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个在 Android 模拟器中运行的程序.我时不时地创建一个 .apk 并将其导出到我的 SonyEricsson Xperia active 中进行测试.我遇到了Applicton 未安装的错误.

我试过重启手机删除现有的 .apk, 不会修复错误

非常感谢

解决方案

删除这个

<块引用>

并删除它

 <activity android:name=".NoteActivity1"></activity><activity android:name=".NoteActivity2"></activity>

I have a program working in the Android Emulator. Every now and again I have been creating a .apk and exporting it to my SonyEricsson Xperia active to test. I have face the error Applicton not install.

I have tried rebooting the phone & removing the existing .apk, does not fix fault

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.note"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk android:minSdkVersion="8" />
    <supports-screens
    android:largeScreens="true"
    android:normalScreens="true"
    android:smallScreens="true"/>

    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name" >
        <activity
            android:name=".NoteActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity android:name=".NoteActivity"></activity>
        <activity android:name=".NoteActivity1"></activity>
         <activity android:name=".NoteActivity2"></activity>
    </application>

</manifest>

Many thanks

解决方案

Remove this

<supports-screens
    android:largeScreens="true"
    android:normalScreens="true"
    android:smallScreens="true"/>

and also remove this

 <activity android:name=".NoteActivity"></activity>
        <activity android:name=".NoteActivity1"></activity>
         <activity android:name=".NoteActivity2"></activity>

这篇关于Android 2.3.4 上的应用程序未安装错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆