Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Custom branding on watch load screen

In the uber apple watch application, I noticed they managed to put the text 'Uber' beneath the loading indicator.

enter image description here

How did they accomplish this?

like image 698
prawn Avatar asked Oct 20 '22 15:10

prawn


1 Answers

You need to set a value in the Watchkit App's Info.plist*.

*note that the screenshot in the original question was for WatchOS1 - in WatchOS2, the title shows in the status bar at the top instead of near the loading indicator, but this answer still controls that text.

1.) Open the Info.plist file for your Watchkit App.
2.) Set the title for the "Bundle display name" key

See the image below for help, as of Xcode 6.3.1:

enter image description here

Alternately, you can edit the Info.plist file as source code and paste this in there:

<key>CFBundleDisplayName</key>
<string>My Cool Title</string>
like image 52
DiscDev Avatar answered Dec 16 '22 09:12

DiscDev