How can I change URL schemes apply to IOS packaging?

Hi I’m trying to deploy my app to Testflight.

But I got this issue from apple :

ITMS-90158: The following URL schemes found in your app are not in the correct format: [Project_Overview_v04]. URL schemes need to begin with an alphabetic character, and be comprised of alphanumeric characters, the period, the hyphen or the plus sign only. Please see RFC1738 for more detail.

I know that URL schemes will be my Project name. So it is hard to change.
I had try to change project name manually but not woking well. so…

Any solution to fix this issue ?
Is “Creating New Project with right name” is the only solution ?
Please HELP !!

1 Like

You can check your url-scheme name in plist file, and you can add some info like this in “Additional Plist Data” in IOS setting:

<key>CFBundleURLTypes</key>
     <array>
         <dict>
             <key>CFBundleURLSchemes</key>
             <array>
                 <string>YourAppName</string>
             </array>
         </dict>
     </array>