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 2021/09/21 06:29:48 UTC

[GitHub] [cordova-ios] cbjerg opened a new issue #1150: Pod error on app with scandinavian chacters in the name

cbjerg opened a new issue #1150:
URL: https://github.com/apache/cordova-ios/issues/1150


   # Bug Report
   
   ## Problem
   Using @havesource/cordova-plugin-push 2.0.0 in an app with a special character in the name (like æ ø å)results in a linker error. Pods install fine, but Xcode shows a build error: ld: framework not found Pods_Special_L_ringsportal (Project name is Special Læringsportal). All pods are in the correct places, and named correctly in the filesystem
   
   ### What is expected to happen?
   App would build, as it does without adding the @havesource plugin
   
   
   ### What does actually happen?
   Xcode shows a build error: ld: framework not found Pods_Special_L_ringsportal
   
   
   
   ### Environment, Platform, Device
   MacOS: Catalina 10.15.4
   Xcode: 12.4
   Cordova-ios: 6.2.0 (tried 6.1.0 and 6.0.0 withg same result)
   
   
   
   ## Checklist
   
   - [x] I searched for existing GitHub issues
   - [x] I updated all Cordova tooling to most recent version
   - [x] I included all the necessary information above
   


-- 
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


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

Posted by GitBox <gi...@apache.org>.
meidlinga commented on issue #1150:
URL: https://github.com/apache/cordova-ios/issues/1150#issuecomment-959895680


   Probably same as: https://github.com/havesource/cordova-plugin-push/issues/95


-- 
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


[GitHub] [cordova-ios] TripShade commented on issue #1150: Pod error on app with scandinavian chacters in the name

Posted by GitBox <gi...@apache.org>.
TripShade commented on issue #1150:
URL: https://github.com/apache/cordova-ios/issues/1150#issuecomment-1039149432


   @meidlinga Works great thx again!


-- 
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


[GitHub] [cordova-ios] TripShade commented on issue #1150: Pod error on app with scandinavian chacters in the name

Posted by GitBox <gi...@apache.org>.
TripShade commented on issue #1150:
URL: https://github.com/apache/cordova-ios/issues/1150#issuecomment-1036030436


   > @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>
   > 
   > ```
   
   Thx I'll give this a go 😃


-- 
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


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

Posted by GitBox <gi...@apache.org>.
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>
   ```
   
   * Call cordova-plugin-app-name
   ```
   npx cordova cordova-plugin-app-name --variable APP_NAME="$NAME" --save
   ```
   
   Edit: Added step, I forgot previously


-- 
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


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

Posted by GitBox <gi...@apache.org>.
meidlinga commented on issue #1150:
URL: https://github.com/apache/cordova-ios/issues/1150#issuecomment-959895680


   Probably same as: https://github.com/havesource/cordova-plugin-push/issues/95


-- 
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


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

Posted by GitBox <gi...@apache.org>.
meidlinga commented on issue #1150:
URL: https://github.com/apache/cordova-ios/issues/1150#issuecomment-959895680






-- 
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


[GitHub] [cordova-ios] TripShade commented on issue #1150: Pod error on app with scandinavian chacters in the name

Posted by GitBox <gi...@apache.org>.
TripShade commented on issue #1150:
URL: https://github.com/apache/cordova-ios/issues/1150#issuecomment-1034911217


   We are also experiencing this.


-- 
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


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

Posted by GitBox <gi...@apache.org>.
meidlinga commented on issue #1150:
URL: https://github.com/apache/cordova-ios/issues/1150#issuecomment-1036100271


   @TripShade : I added a step i forgot to mention initially


-- 
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


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

Posted by GitBox <gi...@apache.org>.
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


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

Posted by GitBox <gi...@apache.org>.
meidlinga commented 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