1

私はアプリを開発していて、それを数人の友人と共有して、彼らがそれをテストできるようにしようとしています。この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>
4

1 に答える 1

0

私は問題が何であるかを発見しました。Eclipseを介してアプリを直接エクスポートしたい場合(キーストアとすべてを追加)、パッケージオプションに移動し、オプションを使用してパッケージの名前を変更しました。それは明らかにすべての名前を変更したわけではなく、すべてのクラスに.Rを挿入していました。また、パッケージの名前を変更しても、クラスでのパッケージのインポートは同じままです。名前を変更するときは、すべてが適切に変更されていることを確認してください。これは明らかにEclipseの既知のバグです。これは、内部のパッケージと一致しなかったさまざまなパッケージのために、その奇妙なエラーを引き起こしていました...非常に奇妙です。

于 2013-01-23T01:37:10.070 に答える