我已經升級我的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>
檢查您的默認活動仍然存在於您的清單。 –
http://stackoverflow.com/questions/15825081/error-default-activity-not-found – Steve
@MahmoudIbrahim添加了我的清單 –