You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cordova.apache.org by GitBox <gi...@apache.org> on 2022/02/10 20:20:19 UTC

[GitHub] [cordova-ios] meidlinga edited a comment on issue #1150: Pod error on app with scandinavian chacters in the name

meidlinga edited a comment on issue #1150:
URL: https://github.com/apache/cordova-ios/issues/1150#issuecomment-1035458837


   @TripShade , we worked around this issue the following way:
   * Set the name itself to an alias without special characters (e.g. part of the package name). This wont be visible in the end.
   * Set the short name to the prefered app name containing special characters
   Example: `<name short="{{= name}}">{{= alias}}</name>`
   
   * Set the Android App label explicitly in the Manifest
   ```
   <edit-config file="app/src/main/AndroidManifest.xml" mode="merge" target="/manifest/application">
   [...]
       <application android:label="{{= name}}" />
   </edit-config>
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org