I am including the swift class inside objective-c
class using the header #import "ProductModuleName-Swift.h"
, where ProductModuleName
is my application product name, hence it works fine!.
But the problem is, in my project i have an automation which will change the product name dynamically. I am having xcconfig
file to override the build settings. In this case how to import the "ProductModuleName-Swift.h"
dynamically as the product name changes from the automation
Please help!