Questions tagged [facebook-unity-sdk]

Questions related to Facebook's SDK for building Facebook apps with Unity

The Facebook SDK for Unity provides a collection of Facebook's social features to Unity apps, allowing them to integrate closely with Facebook features and data

Resources


Related tags

604 questions
22
votes
3 answers

Unable to verify assembly data; you must provide an authorization key when loading this assembly

I'm testing the InteractiveConsole example in Unity. I did some configurations as described in the official tutorial. After some setups I got on step 7: Run our example code. However, I'm receiving the following errors: Unable to verify assembly…
user3118059
  • 221
  • 2
  • 3
20
votes
1 answer

Error: The prefix "tools" for attribute "tools:overrideLibrary" associated with an element type "uses-sdk" is not bound

I got the following error while build apk file from unity on mac osx sierra. this also build fine before I reboot my macbook, but not now. I've added error details below: Note: I'm using facebook sdk. Error: Error while saving blame file, build will…
20
votes
1 answer

Unity game campaign installs on Android not tracked in Facebook Analytics for Apps

I'm observing a large difference in tracking campaign installations between Android and iOS. Analytics for Apps show about 1000 installs on iOS and just 5 on Android (which correlates to the number of developer installations of the game). I'm…
19
votes
1 answer

ActivityNotFoundException when using Facebook plugin with Unity

I'm using Unity 5.2.2p2, Facebook Unity SDK 7.2.2 and the Prime31's Android IAB plugin 2.9. When I compile my app and run it on a device, in the adb logs I see this: I/Unity (18149): AndroidJavaException: android.content.ActivityNotFoundException:…
11
votes
1 answer

"Page not found" when a user clicks on a Facebook invite from my application

I'm not sure if this is a programming related problem or not, but as I have no experience with the Facebook SDK I'm just assuming that I did something wrong somewhere, even though I've followed the documentation to the T. I am using the Unity SDK…
11
votes
0 answers

facebook-unity-sdk WP8 and Windows Store

On behalf of the Unity developers of Windows Phone 8 and Windows Store apps, I would like to ask you guys to support those platforms to the sdk. It would be fantastic. Best regards
user2828238
  • 127
  • 4
9
votes
2 answers

Facebook Unity SDK on Android - Login fails when FB App installed

I appear to be having the same issue as discussed in this question: Facebook SDK for Unity on Android - Trouble about callback from FB.Login On Android when the regular Facebook app is installed, calls to FB.Login() using the Unity SDK prompt the…
Brizee
  • 190
  • 1
  • 2
  • 15
8
votes
2 answers

Facebook-unity-sdk not using iOS native SSO

I'm working with Unity 4.6 and Facebook Unity SDK 6.0. On Android things appear swell, but on iOS I don't seem to be utilizing the native Facebook SSO. It constantly reverts to the browser-based login, which really gives off a unprofessional…
Nils Munch
  • 8,805
  • 11
  • 51
  • 103
7
votes
1 answer

How to set Firebase Database URL (Unity)

I'm trying to create a login with Facebook with Firebase. My login function is: public void FacebookLogin() { var perms = new List() { "public_profile", "email" }; FB.LogInWithReadPermissions(perms, AuthCallback); …
Antonino Iaria
  • 73
  • 1
  • 1
  • 5
7
votes
3 answers

Facebook Unity sdk error

I'm getting this error when compiling unity for android using the facebook unity sdk (if I remove the sdk it compiles fine): Failed to compile resources with the following parameters: -bootclasspath…
InesM
  • 331
  • 4
  • 16
6
votes
3 answers

API Error Code 1383146 in Facebook Canvas API for Unity while making payment

I have implemented payments in my Unity app and have defined products in HTML form in my server, and have crawled them with FB's debug tool. The products are identical to Facebook's payments example apart from pricing and naming, as well as the…
6
votes
1 answer

Unity facebook SDK, can not post picture with FB.Feed

In my Unity IOS game, I am unsuccessfully trying to use FB.Feed to share a screenshot on the user's wall. Facebook documentation uses FB.Api to publish the screenshot, but this method does not display a share dialog, it simply uploads the pic to…
Mauro Palumbo
  • 63
  • 3
  • 5
6
votes
5 answers

How to get user's profile picture with Facebook's Unity SDK?

I'm trying to get the profile pic of the user of the game using this- void MyPictureCallback(FBResult result) // store user profile pic { if (FB.IsLoggedIn) { WWW url = new WWW("http" + "://graph.facebook.com/" +…
Jason Pietka
  • 181
  • 1
  • 3
  • 16
5
votes
2 answers

Facebook 7.0.3 login issue on iOS 9

I have this message in the Xcode's log : -canOpenURL: failed for URL: "fbauth2:///" - error: "This app is not allowed to query for scheme fbauth2" And my app doesn't open the Facebook App, but Safari. And then I have an error in the…
ababab5
  • 284
  • 4
  • 14
5
votes
2 answers

facebook unity sdk 6.0 crash app at second login

Created a simple app with facebook unity sdk 6.0. In start function call the init facebook. There is a button call login and the login callback just output string. Run on a Samsung galaxy s5 with android 4.4.2. Issue (100% repeatable): 1. First…
1
2 3
40 41