Home > Software design >  AndroidManifest.xml not editable on Android Studio
AndroidManifest.xml not editable on Android Studio

Time:06-12

enter image description here

I've been reversing an app, but came across a problem. The AndroidManifest.xml file is not writable. I made sure that the file is not 'read-only' in file explorer, but it still doesn't work. And I can't find 'merged text tab(?)' sort of thing which is supposed to solve this.

CodePudding user response:

Hey there can be multiple ways you can try to solve this issue:

  1. The simplest one is to Clean and Rebuild the project.
  2. You can go to your File -> Invalidate Caches and Restart.
  3. Try running Android Studio in Administrator mode.
  4. You can try this : https://stackoverflow.com/a/34705198/9062752

Let me know if any of these fixed your error.

Also note : Not sure about this library but I read a comment which says ".jar files cannot be edited", so yeah if you are trying to edit a .jar file it is not possible (I am not sure of the reason though)

  • Related