Again, apologies for the noob question, but changi...
# compose-desktop
c
Again, apologies for the noob question, but changing my title doesn't seem to change it on the OS level. I want my app to be called "Yay". Same with my notification, except it says "Java". I guess I'm missing some larger configuration somewhere. I did look in tutorials and the only title changes it had were in the Window tutorial.
r
My info might be outdated since I haven’t written a desktop Java app in a long time, but on macOS it’s done either by setting the name in
Info.plist
inside your DMG. You can also use
-Xdock:name="my name"
when invoking the Java runtime
c
Interesting. first time doing desktop app dev so I don't really know what that means. I was kind of expecting that it would just put my title as my app name. Apparently I am mistaken. 🙃
d
There's an issue for this I think.
c
Oh. good point. let me look.
d
r
@Colton Idle In general on macOS, app name != window name (which makes sense since apps can have multiple windows open at the same time)
c
True! Just trying to break free from my close minded android self. 😁