[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>
我還是不能運行我的應用程序。
難道你在你的清單文件中添加你的Activity? – CMA 2013-03-19 00:59:22
我應該添加家庭活動?因爲它說等待回家.. [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
發佈您的清單 – ElefantPhace 2013-03-19 01:02:14