-7

I have decompiled an voip calling apk file with Apktool and I tried to change its package name but I am getting an error that unfortunately app stopped...

What I did that search the package name inside all the files (root dir)and replace every occurrence with new package name by with notepad ++.

Here is the problem that app use to communicate their server same as package name so it would cause an error "unfortunately stoped!!! "

How can I replace only that package name without effecting other name that have the same package name.

Thanks in advance.

Andy Developer
  • 3,071
  • 1
  • 19
  • 39

2 Answers2

0

You don't n required to manually replace the package name in every source file

Right click on the package name ---> Rename --> Type your new package name & choose Refactor

(This option will automatically replace all references associated with the package name including in manifest file. )

Don Chakkappan
  • 7,397
  • 5
  • 44
  • 59
0

you should try to import the project into Eclipse or any other IDE. then change the Package name only. Thank You. Hope this will Solve your Problem