expo / turtle

Standalone app builder service
MIT License
385 stars 29 forks source link

Old BundleIdentifier may also start with numeric character #313

Open lal12 opened 3 years ago

lal12 commented 3 years ago

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\-.]+$/