1
votes

I am using Unity 4.6.1(Latest Version) and now planning to integrate Facebook SDK to my new game. However, I am confused with the version of Facebook SDK when I read topics about problems of FB SDK 6.1 with Unity 4.6.1. Should I use FB SDK 6 instead 6.1?

1
check out this link it may help : developers.facebook.com/docs/unity - Sora

1 Answers

0
votes

I am using Unity4.6.1 as well and used Facebook SDK 6.0. The only change which I was supposed to do was to change the FB.cs file. Change required:

#if UNITY_4_5
  ...code
#end_if

To

#if UNITY_4_6
   ....code
#end_if