Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Execution failed for task :app:processDebugmanifest

Error:Execution failed for task ':app:processDebugManifest'.

com.android.manifmerger.ManifestMerger2$MergeFailureException: org.xml.sax.SAXParseException; lineNumber: 1; columnNumber: 1; Premature end of file.

like image 902
Sachin Kumar Singh Avatar asked Jul 08 '26 23:07

Sachin Kumar Singh


2 Answers

Try adding this line to your manifest file.

<manifest xmlns:tools="http://schemas.android.com/tools">

like image 176
ASN Avatar answered Jul 11 '26 19:07

ASN


Check you AndroidManifest.xml file, Maybe you can find error there. If no problem, please check this in manifest tag like this way.

<?xml version="1.0" encoding="utf-8"?>
<manifest 
  xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:tools="http://schemas.android.com/tools">
     ...........................................
</manifest>
like image 32
HardCoding Avatar answered Jul 11 '26 18:07

HardCoding