I am trying to determine how to extract or get programatically the Custom URL Scheme from a application .ipa file. Is this possible?
|
feedback
|
|
Yes, this is possible. First, unzip the .ipa file. (you can rename it with .zip to do this). Then, inside the .ipa file, you will find there is a Info.plist file. You can parse that file, look for "CFBundleURLSchemes" and you will see first the app id followed by the Custom URL if one is defined for the app. | |||
|
feedback
|
|
Yes, you can just unzip the ipa (this just a zip file), open the < application >.app and look for the info.plist. It should contain any custom app URL schemes, if the app supports it. | |||
|
feedback
|