I have an iPhone app that changes its resources in a C # application and changes its interface with changing images and styles. Now I want to change the name of the application that the hit icon appears when installing on an IOS phone with my C # program. I know that I have to extract the .ipa package as a zip file and open info.plist and change the search for my previous or old application name and replace it with a new line and then repack it again. but since the format is binary, when the new line length is different from the previous one, when I install .ipa on the IOS phone, I will show me an error message that the ipa file is not valid. which tool can exist that I can use with my C # code to rename it without problems. Thanks.
source share