[Solved] What does Error:(13) Error: The element must be a direct child of the element [WrongManifestParent] mean and how do i fix it?


Move

 <receiver
        android:name=".receiver.DialReceiver"
        android:exported="true"

        android:process=":background"
        >
        <intent-filter>
            <action android:name="android.intent.action.NEW_OUTGOING_CALL" />
            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </receiver>

Outside <activity> tag

2

solved What does Error:(13) Error: The element must be a direct child of the element [WrongManifestParent] mean and how do i fix it?