For logging purposes, I need to know the bundle identifier of the framework I am developing. I do not want to use a static string.
It is easy to access the bundle identifier of the app the framework is running in:
var appBundleIdentifier = Bundle.main.bundleIdentifier
But I would like the bundle identifier of the framework like ("com.example.my-super-powerful-framework").
You can access bundle identifier of an object like below;