我已经升级我的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添加了我的清单 –