Pranav Raikote
Pranav Raikote

Reputation: 97

How to resolve this failed processing manifest error

Image here

enter image description here

How to resolve this error

Upvotes: 1

Views: 30696

Answers (7)

Nikhil Kumar
Nikhil Kumar

Reputation: 1

Add two line in strings.xml

<string name="mauron85_bgloc_content_authority">Project Name</string>
<string name="mauron85_bgloc_account_type">Project Name</string>

Upvotes: 0

Vikash Gupta
Vikash Gupta

Reputation: 31

For me it was error with the .package, since it is a reserved word in java. To change this, go to your capacitor.config file, and change it there to some other word and rebuild the app with

ionic build
ionic cap add android
ionic cap open android 

Then go to build -> build apk

Upvotes: 0

Romit Dobariya
Romit Dobariya

Reputation: 1

when some time we will change the application logo without using any package that time we delete following folders :

  • drawable-hdpi
  • drawable-mdpi
  • drawable-xhdpi
  • drawable-xxhdpi
  • vdrawable-xxxhdpi

in that case we are can't create pipmap folder that time error: failed processing manifest is raised

Upvotes: 0

Sajjad Speaks
Sajjad Speaks

Reputation: 11

The error you are getting is in the app\build\intermediates\packaged_manifests\debug location, it a build error which consider the delet file as well. go to app\src\main and in the AndroidManifest.xml file make sure to remove what's written in line no 22.

Upvotes: 1

rozeri dilar
rozeri dilar

Reputation: 381

It has been a long time after this question has been asked. But I have been dealing with this problem and wanted to give my answer. Android studio does not give the exact reason why your manifest can not process building. Since it is a xml file you should go to your manifest file, go to redness and try to read the suggestion by android studio. In my case, I have deleted the string value, I thought I was not using it, yet I was using it in

android:label="@string/custom_app_dialog"

part. Then I added my string value back, it is all good now.

Upvotes: 2

Hitesh sapra
Hitesh sapra

Reputation: 256

Simple Answer, delete your release,build folder

Upvotes: -2

Faysal Ahmed
Faysal Ahmed

Reputation: 7669

If AppTheme.NoActionBar does not exist on your styles.xml then add this on styles.xml

<style name="AppTheme.NoActionBar">
    <item name="windowNoTitle">true</item>
    <item name="windowActionBar">false</item>
    <item name="android:windowFullscreen">true</item>
    <item name="android:windowContentOverlay">@null</item>

This will help to solve this problem.

Upvotes: 1

Related Questions