What is the problem?
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.example.4" >
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<receiver android:name=".MainActivity"
tools:ignore="IntentFilterExportedReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED">
</action>
</intent-filter>
</receiver>
</application>
3
Answers
You need the closing
</manifest>
tag under the</application>
:Close the manifest tag after application tag.
</application></manifest>
You are missing
</manifest>
on the last line. It’s also likely thatandroid:icon="@drawable/ic_launcher"
should be changed toandroid:icon="@mipmap/ic_launcher"
.