应用程序安装说“应用程序未安装”

时间:2013-01-22 17:48:52

标签: android

我正在开发一个应用程序,我正在尝试与几个朋友分享,以便他们可以测试它。我使用这个http://www.androiddevelopment.org/tag/apk/方法创建了一个密钥。该应用程序安装在手机上没有问题,但当我实际点击图标启动应用程序时,它显示“应用程序未安装”。考虑到我在应用程序列表中看到它并且我的应用程序抽屉中有一个图标,这是非常奇怪的。怎么了?我在页面底部回答了这个问题。这是可以正常使用的新XML文件。

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

<uses-sdk
    android:minSdkVersion="10"
    android:targetSdkVersion="17" />

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name=".MainActivity"
        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 = ".SQLView" android:label ="@string/app_name"
        android:exported="false">
        <intent-filter>
            <action android:name="com.example.test.SQLVIEW" />
            <category android:name="android.intent.category.DEFAULT" />      
        </intent-filter>
    </activity>

    <activity android:name = ".Add_Flashcard" android:label ="@string/app_name"
        android:exported="false">
        <intent-filter>
            <action android:name="com.example.test.ADD_FLASHCARD" />
            <category android:name="android.intent.category.DEFAULT" />      
        </intent-filter>
    </activity>

    <activity android:name = ".Flashcards_List" android:label ="@string/app_name"
        android:exported="false">
        <intent-filter>
            <action android:name="com.example.test.FLASHCARDS_LIST" />
            <category android:name="android.intent.category.DEFAULT" />      
        </intent-filter>
    </activity>

    <activity android:name = ".Edit_Flashcard" android:label ="@string/app_name"
                android:exported="false">
        <intent-filter>
            <action android:name="com.example.test.EDIT_FLASHCARD" />
            <category android:name="android.intent.category.DEFAULT" />      
        </intent-filter>
    </activity>

    <activity android:name = ".Decks_List" android:label ="@string/app_name"
        android:exported="false">
        <intent-filter>
            <action android:name="com.example.test.DECKS_LIST" />
            <category android:name="android.intent.category.DEFAULT" />      
        </intent-filter>
    </activity>
</application>

</manifest>

1 个答案:

答案 0 :(得分:0)

我发现了问题所在。当我想通过Eclipse直接导出应用程序(同时添加密钥库和所有内容)时,我进入了包选项,并通过选项重命名了包。这显然没有重命名所有内容,它也插入了.R到我所有的classess。此外,重命名包时,classess中的包导入将保持不变。重命名时,请确保一切都已正确更改,因为这显然是Eclipse中的一个已知错误。这反过来导致了奇怪的错误,因为不同的包与内部的包不匹配......超级奇怪。