我一直在尝试制作应用。我没有错误地完成它,但是当我在我的设备上安装它时我无法打开它。 我在这里搜索了解决方案,但没有任何帮助。大多数人发布他们的AndroidManifest,所以就在这里。
<?xml version="1.0" encoding="utf-8"?>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme"></application>
<activity android:name="Main">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
非常感谢任何帮助。谢谢!