Xcode: Using XCConfig keys in plist other than Info.Plist

Viewed 418

I created an xcconfig file and am trying to use the keys inside Info.plist.
But I am not able to use it in other plist files.
For example Auth0 has its own plist and the keys inside Auth0.plist don't pick up values from the XCConfig file. Instead I end up just getting the key.

For e.g. This is in my XCConfig File.
AUTH_CLIENT_ID = abcdefgh12345678
And the Plist contains - ClientId as key and $(AUTH_CLIENT_ID) as Value.

But on accessing the ClientId from Auth0.plist, I get "$(AUTH_CLIENT_ID)" as a String instead of abcdefgh12345678

0 Answers
Related