我对android Studio 2.2.3有疑问 当我尝试运行我的简单项目,hello world app时,我发现了这个错误 the first problem
然后我点击了确定。
我遇到了新问题
解决方案是什么
答案 0 :(得分:0)
that's the code of AndroidManifest xml :
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.user.myapplication">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>