Recently I got reminder from Facebook regarding updating my Graph API version to latest one as the one which my app is pointing to will deprecate soon.
After this I have gone through all the documents provided by Facebook developers and also to other StackOverFlow question.
But still I have some queries and doubts if someone can clarify for me.
1) How to find to which API my apps (In Android as well as iOS) are pointing too ?
-- I have seen on my Dashboard and it is showing 2.5, but i have not specified this in my code anywhere, which means it will point to the minimum available version which is 2.5 for now. Which leads to my second question.
2) If I have not specified the version and it is automatically taking the minimum supported version, then once it is deprecated it will not automatically take the 2.6 version as least minimum version ?
-- In my API Upgrade Tool it is showing affected methods, and in Android platform I have used only Facebook Login, with Maven library and the code is already same as Facebook Developer Document for Login.
-- While my iOS Platform have written Methods for getting userfriend list and interest etc. But we are not using it anymore.
3) Do I need to change anything in my Android version to get it point to the latest one ?
-- I don't have to handle if user does not allow to access to certain things i have already got it under control.
4) Do I need to remove unused code of Facebook APIs?
-- If i am not using it anymore then it should not have any problem with Facebook API Version thing right?
5) If I change version directly from DashBoard, What will be its impact or do I need to change the code itself.
I am able to understand everything that I am reading for the Graph API, But still I am not able to figure it out or it is not getting fit in mind that why i need to do migrate API version just to let my user login using facebook for my app.