Guys,
I always seem to have an issue when I try to install my re-signed apps through Xcode - The error is:-
"Can't install application
The Info.plist for application at specifies a CFBundleExecutable of , which is not executable"
I can manually get it to work by doing the following:-
1) Rename yourapp_resigned.ipa to yourapp_resigned.zip
2) Unzip yourapp_resigned.zip to yourapp_resigned folder
3) Launch Terminal, type command: $ cd yourapp_resigned folder
4) Type command: $ chmod +x Payload/yourapp (here yourapp is executable file)
5) Type command $ zip -r -T -y yourapp_resigned_fixed.ipa Payload
6) Try to install yourapp_resigned_fixed.ipa to your phone.
How can I get it to work, without having to go through the above steps? I'm using Xcode 7.3 beta
Thanks in advance
I always seem to have an issue when I try to install my re-signed apps through Xcode - The error is:-
"Can't install application
The Info.plist for application at specifies a CFBundleExecutable of , which is not executable"
I can manually get it to work by doing the following:-
1) Rename yourapp_resigned.ipa to yourapp_resigned.zip
2) Unzip yourapp_resigned.zip to yourapp_resigned folder
3) Launch Terminal, type command: $ cd yourapp_resigned folder
4) Type command: $ chmod +x Payload/yourapp (here yourapp is executable file)
5) Type command $ zip -r -T -y yourapp_resigned_fixed.ipa Payload
6) Try to install yourapp_resigned_fixed.ipa to your phone.
How can I get it to work, without having to go through the above steps? I'm using Xcode 7.3 beta
Thanks in advance