Android Studio 4.0 不能启动应用
解决办法,可能是manifest 太长 工具无法识别
修改manifest 先只保留一个启动的acitivity 让Androidstudio 识别manifest。然后在恢复正常的manifest
<activity
android:name=".view.activity.adver.AdverActivity"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen">
<!--android:theme="@android:style/Theme.NoTitleBar.Fullscreen"-->
<intent-filter>
<action
android:name="android.intent.action.MAIN"
android:launchMode="singleTask" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
Androidstudio 识别manifest成功的时候是这样的
life is a jounery,yes