We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Today I configured Notification with LB iOS SDK.
I noticed, that the framework has hardcoded to reference: Settings.plist for e.g. AppId and AppVersion.
Since we have the version already in the Info.plist it would make much more sense to get the AppId and AppVersion from there.
The text was updated successfully, but these errors were encountered:
That makes sense to me. Code like the following would be good:
NSDictionary *infoDict = [[NSBundle mainBundle] infoDictionary]; NSString *appId = [infoDict objectForKey:@"CFBundleName"]; NSString *appVersion = [infoDict objectForKey:@"CFBundleVersion"];
Sorry, something went wrong.
No branches or pull requests
Today I configured Notification with LB iOS SDK.
I noticed, that the framework has hardcoded to reference: Settings.plist for e.g. AppId and AppVersion.
Since we have the version already in the Info.plist it would make much more sense to get the AppId and AppVersion from there.
The text was updated successfully, but these errors were encountered: