2016-09-03 148 views
0

我已經升級我的Android工作室,當我跑我的老項目也推出了主題裝置錯誤升級Android Studio中

16時45分三十零秒會議「主題」的時候給我的錯誤後

Could not identify launch activity: Default Activity not found 
Error while Launching activity 

這裏是我的清單

<?xml version="1.0" encoding="utf-8" standalone="no"?> 
<manifest xmlns:android="http://schemas.android.com/apk/res/android"package="com.nitinvaid.theme.neoncolorsl" platformBuildVersionCode="23" platformBuildVersionName="6.0-2438415"> 
<meta-data android:name="org.cyanogenmod.theme.name" android:value="@string/theme_name"/> 
<meta-data android:name="org.cyanogenmod.theme.author" android:value="@string/theme_author"/> 
<application android:hasCode="false" android:icon="@drawable/ic_launcher" android:label="@string/theme_name"> 
</application> 
</manifest> 
+0

檢查您的默認活動仍然存在於您的清單。 –

+0

http://stackoverflow.com/questions/15825081/error-default-activity-not-found – Steve

+0

@MahmoudIbrahim添加了我的清單 –

回答

0

可能因爲某些原因,你的默認的活動從您的清單中刪除,將其添加爲以下幾點:

<activity 
     android:name=".YourActivity" 
     android:label="@string/app_name"> 
     <intent-filter> 
      <action android:name="android.intent.action.MAIN" /> 
      <category android:name="android.intent.category.LAUNCHER" /> 
     </intent-filter> 
    </activity> 
+0

nope仍然是我一樣建立CM13主題所以我不認爲活動重要bcoz我以前檢查太沒有活動在我的清單,我建立在CM13主題模板,現在當我切換回到舊的android工作室它的工作完美再次爲什麼我有新的錯誤android studio –

+0

嘗試將您的android studio更新爲「Beta」版本,而不是更新爲「Canary」或「Dev」。 –

+0

我正在使用android studio 1.5.1我也有這個問題幾個月回當我升級我的android studio到2.0然後我恢復到1.5.1,現在今天我想給它一個嘗試,但仍然是它在android studio 2.1中相同.3我猜 –

0

好了,所以它看起來像如果你正在構建主題的CM13那麼作爲主題不有它的活動,以便它只是錯誤,你應該忽略它或者你可以在新的Android工作室將始終爲您提供了錯誤做的是

Just change the run configuration of android studio for a theme app. Instead of default activity, change it to no activity.