升级Android Studio后出错

时间:2016-09-03 11:22:41

标签: android

我刚刚升级了我的Android Studio,当我运行旧项目时,在向设备启动主题时出现错误

16:45:30会话'主题':错误启动活动

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>

2 个答案:

答案 0 :(得分: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>

答案 1 :(得分:0)

好吧所以看起来如果你正在为CM13构建主题那么新的android工作室将总是给你错误,因为主题没有活动,所以它只是你应该忽略它的错误或你可以做的是

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