I integrated with Facebook SDK and I am tracking FBAppEvents with it. So far the event reporting is working perfectly fine and the events all showed up in App Insights. However, I am having trouble setting the app version number.
According to Apple's document, all I need to do is to call [FBSettings setAppVersion:xxx]. However, this method is deprecated and Facebook is suggesting using CFBundleVersion instead.
So instead of calling [FBSettings setAppVersion:], I set this CFBundleVersion in my app's [Appname]-Info.plist file but I still don't see the app version number show up(I put a value of 56 there).
Does anyone have any idea how to fix this?