You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 7, 2023. It is now read-only.
Nowadays the iOS bundleIdentifier has to start with a latter [A-Za-z]. However this wasn't always the case. My app from 2016 has an bundleIdentifier starting with a numeric character. Previously I used SDK 39 where the app.name was used, but now I apparently have to specify app.ios.bundleIdentifier explicitly, therefore it now complains about an invalid bundleIdentifier.
So /src/jobsSchemas/ios.ts:11 should be changed to allow /^[a-zA-Z0-9\-.]+$/
The text was updated successfully, but these errors were encountered:
Nowadays the iOS
bundleIdentifier
has to start with a latter[A-Za-z]
. However this wasn't always the case. My app from 2016 has anbundleIdentifier
starting with a numeric character. Previously I used SDK 39 where theapp.name
was used, but now I apparently have to specifyapp.ios.bundleIdentifier
explicitly, therefore it now complains about an invalidbundleIdentifier
.So
/src/jobsSchemas/ios.ts:11
should be changed to allow/^[a-zA-Z0-9\-.]+$/
The text was updated successfully, but these errors were encountered: