2013-03-19 49 views
-1
[2013-03-19 08:52:49 - GEARS] Performing sync 
[2013-03-19 08:52:50 - GEARS] Automatic Target Mode: launching new emulator with compatible AVD 'sdfs' 
[2013-03-19 08:52:50 - GEARS] Launching a new emulator with Virtual Device 'sdfs' 
[2013-03-19 08:52:54 - GEARS] ------------------------------ 
[2013-03-19 08:52:54 - GEARS] Android Launch! 
[2013-03-19 08:52:54 - GEARS] adb is running normally. 
[2013-03-19 08:52:54 - GEARS] No Launcher activity found! 
[2013-03-19 08:52:54 - GEARS] The launch will only sync the application package on the device! 
[2013-03-19 08:52:54 - GEARS] Performing sync 
[2013-03-19 08:52:54 - GEARS] Automatic Target Mode: launching new emulator with compatible AVD 'sdfs' 
[2013-03-19 08:52:54 - GEARS] Launching a new emulator with Virtual Device 'sdfs' 

我正在做一個android應用程序,編輯它後,我遇到了這個問題。它沒有錯誤,但它也不會啓動。我的清單或發佈活動有問題嗎?模擬器不啓動我的項目

更新的清單:

<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> 

我還是不能運行我的應用程序。

+0

難道你在你的清單文件中添加你的Activity? – CMA 2013-03-19 00:59:22

+0

我應該添加家庭活動?因爲它說等待回家.. [2013-03-19 08:53:39 - GEARS]等待HOME('android.process.acore')被啓動... [2013-03-19 08:54:47 - GEARS] emulator-5556斷開!取消「同步」! [2013-03-19 08:57:43 - GEARS] HOME正在使用設備'emulator-5554' [2013-03-19 08:57:43 - GEARS]將GEARS.apk上傳到設備'emulator-5554 ' [2013-03-19 08:57:45 - GEARS]安裝GEARS.apk ... – Giant 2013-03-19 01:01:56

+0

發佈您的清單 – ElefantPhace 2013-03-19 01:02:14

回答

0

您有相同的活動定義兩次。除去這一點,並嘗試:

<activity 
    android:name="com.bpi.gears.MainActivity" 
    android:label="@string/app_name" > 
</activity> 

你在你的清單中有這樣的:

<action android:name="android.intent.action.main" /> 

它必須是這樣的:

<action android:name="android.intent.action.MAIN" /> 

你,而不是mainMAIN

+0

我重新發布我目前的清單檢查出來。 – Giant 2013-03-19 01:21:38

+0

是否將MainActivity另存爲MainActivity.java? – ElefantPhace 2013-03-19 01:26:30

+0

no sir我有一個單獨的MainAcvtivity.java文件...我有3個java文件 主頁配置文件和MainActivity文件.. – Giant 2013-03-19 01:27:51