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

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

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name="com.bpi.gears.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="com.bpi.gears.home"
        android:label="@string/title_activity_home" >
    </activity>
     <activity
        android:name="com.bpi.gears.profile"
        android:label="@string/title_activity_profile" >
    </activity>
</application>

</manifest>

これは私のマニフェストです。お気軽にチェックして、どこが間違っているか教えてください。すべてを確認する必要がある場合は、大いに役立ちます。すべてのプロジェクトにエラーがないことを示すことができるので、どこが間違っているかを見つけるのに苦労しています...

4

1 に答える 1

0

ネーミングに問題があると思います。パッケージ名は「com.bpi.mygears」で、com.bpi.gears のアクティビティを探しています。アクティビティには、パッケージに関連する名前を付けることができます。おそらく次のようになります。

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

<uses-sdk
    android:minSdkVersion="8"
    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=".home"
        android:label="@string/title_activity_home" >
    </activity>
     <activity
        android:name=".profile"
        android:label="@string/title_activity_profile" >
    </activity>
</application>

</manifest>

あなたのものがcom.bpi.mygearsにあると仮定します。package="com.bpi.gears"そうでなければ、あなたのものがギアに入っている場合は、その最初の行を作り ます.

于 2013-03-19T02:52:46.350 に答える