Edit CFBundleDisplayName

Hi,

Just a short question maybe anyone here encountered this kind of problem. On iOS app name (below icon) is restricted to 12 characters. If app name is longer system will trim the spaces between. After a google search a reasonable solution is to replace the white spaces with   in infoPlist.
In expo (app.json) I have added this entry but it seams to be ignored on build.

    "ios": {
     ...................
      "infoPlist": {
        "CFBundleDisplayName": "Very Long App Name"
      }
    },

Anybody has an idea about this?

Thx.