My app name is "TheTestApp". My requirement is my app name should be like this "Test's app". Is it possible? When install on device it should show "Test's app". How to achieve this in Blackberry?
Edit your BlackBerry_App_Descriptor and change the Title. If you're using an internationalization bundle change whatever String "Title ID" is pointing to
Open BlackBerry_App_Descriptor
In Packaging tag, set the value of OutputFileName to whatever you want
Rebuild
And if you want to change the title appearing to the user under app icon, change the value of Title in General tag.
If you are using Eclipse, opening BlackBerry_App_Descriptor, you may find a tab called Build to change COD & ALX names via a graphical UI which has the same impact to the file and also a tab called Application where you can change the title.
Related
I want to change the app name based on the app language selected by the user & not the system language.
Is there any solution?
Even if it is doable using private API, I would like to know.
I know there is only one way using plist but as it is read only, I won't be able to update the plist file.
VImp Note, I want to change as per app language and not as per system language.
You can localize your Info.plist file.
Just select Info.plist file,and in File Inspector,click Localize... button in the Localization section.
You can't change your apps name programmatically.Because the name is stored in the info.pist which resides in you apps main bundle is read only you can not change it. You only option is to use the localized functionality provided by iOS based on the system language.
Let's say I have an iOS app entitled "The Most Awesome iOS App".
This is the actual name of my application. It is what I want to appear in local/push notification titles, in the Settings app, etc.
However, I'd like its home screen icon to have a simpler title, like "Awesome".
As is, you'll see something on the homescreen like "The...S App". Not very useful!
If I set CFBundleDisplayName to "Awesome" then the homescreen icon shows the correct title, but everything else also says "Awesome". If I set CFBundleName to "Awesome" it has the exact same effect even if BundleDisplayName is not set.
I definitely do have apps on my device which have settings page names and notifications with a long title, with abbreviated home screen titles, so I'm assuming this can be done. How can this be accomplished?
In your case, just change the "product name" in build setting
Hey~ hope you already solve your case. I just ass a helpful tutorial about your case. developer.apple.com/library/ios/qa/qa1823/_index.html –
Basically the tutorial says:
Add a property named "Bundle display name" in your Info.plist of your xcode project. Then set the name you what change in the value of the "Bundle display name" Key.
I tried it. And it works for my project
I have an iOS app that's used internationally.
This app supports push-notifications.
The app is used internationally.
however, recent legal problems force me to change its name in the U.S.
I don't want to change its name globally, just the U.S.
Whta's the minimal set of action I can take to get there as fast as I can?
Can I change the application name and some of its UI for a certain locale only? (ENG-US)
do must I deploy a new app altogether alongside the old one?
Note I must keep the "british" locale with the old UI, but must rename the application name and change some of its UI only for the U.S.
Is that possible? or will I be forced to deploy a new app just for the U.S.?
Thank you
Yes the CFBundleDisplayName and CFBundleName are localizable. You need to add your localizations in an InfoPlist.strings file and add specific localizations there.
I'm new to Iphone development. I've developed an application with Titanium Studio, but I have a long name for my application. When I deployed the application to device, I saw that the name was not displayed properly instead it was displayed with dots. Ex. "My long..me" instead of "My long application name".
Is there any way to add a new line character so that I can see the whole name in the device? Any suggestion would be helpful. Thanks in advance.
Not possible. Have you ever seen an iOS app with a two-line name?
Not possible for the name under the icon (Bundle Display Name). Some developers put some additional text as part of the icon image.
I have a strange problem with my application name: my project is called "something - somenumber" (with the dash).
For the submission, the App name I've chosen is without tje dash, infact, in the iTunes Store I can see the name without it.
But when I download my approved App, the name is with the dash..
Have you ever heard something similar???
Is this a problem with the new SDK and IOS version?
Now the name has to coincide with project name???
Thanks
By default, the Bundle display name in the Info.plist of iOS apps is ${PRODUCT_NAME}. ${PRODUCT_NAME}, by default, is the same as the project name, which in your case has a dash. The Bundle display name is the text that gets displayed under your app's icon in the device's home screen. This could be the reason why you can see the dash when you download the app.
You should change the CFBundleDisplayName in the apps Info plist file. This value is what the iOS spring board uses underneath each app. This can also be localised.
.bundle identifier is for the provisioning profile.