What should I set the application identifier in GTK?

To initialize a GTK application, I have to pass the application identifier. I did a bit of Googling, and I found the minimum requirements for an application identifier , but no recommendations as to what it should be called.

I also found some code snippets where the convention seemed to be similar to the Java package naming convention.

How do I name my application id?

+4
source share
1 answer

The requirements can be called anything you want, but the agreement is the reverse domain name, followed by the name of the application: com.stackoverflow.QuestionAnswerer.

+4

Source: https://habr.com/ru/post/1530674/


All Articles