Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install facebook api on emulator in windows 7?

I'm new for facebook app, so I need help to install the facebook api on android emulator in windows 7.

I have installed the facebook api but I got a library error..

[2013-04-02 16:22:35 - HelloFacebookSample] Unable to resolve target 'android-8'

in library

....\facebook ?

like image 934
Engr Waseem Arain Avatar asked Apr 02 '13 09:04

Engr Waseem Arain


People also ask

How do I run an APK file on an emulator?

To install an APK file on the emulated device, drag an APK file onto the emulator screen. An APK Installer dialog appears. When the installation completes, you can view the app in your apps list. To add a file to the emulated device, drag the file onto the emulator screen.

What SDK does Facebook use?

The current version of the Facebook SDK for Android is version 14.1. 0 and requires the Android API 15.


3 Answers

You don't install the Facebook API. Neither on a device nor on an emulator.

You make calls to the Facebook API using their SDK for various platforms. In your case, the Facebook Android SDK. This Facebook Android SDK is to be integrated in your application that you develop.

However, if you meant install the Facebook App on the emulator (the OP is mighty unclear), then you will need to grab the .apk file that is included in the SDK bundle that you can download from the link above. To install that APK, follow these steps:

Make sure you have the emulator already running.

  1. Download the SDK package.
  2. Extract the contents of the zip to a folder.
  3. Find the APK file in the extracted folder, in the bin folder and rename it to a simple facebook.apk file name. Copy this file.
  4. Browse to your SDK location on your computer and navigate to the platform-tools folder. (We need the adb here). Paste the facebook.apk file here
  5. In an empty area in the folder, with the Shift key pressed, right click and select Open command Window here (make sure you are not doing this on any file or folder)
  6. Now, at the command prompt, type this command:

    adb install facebook.apk

Following the above steps will install the Facebook application on your emulator.

like image 73
Siddharth Lele Avatar answered Oct 20 '22 00:10

Siddharth Lele


If you want to use Facebook as part of your application, you can get hold of the Facebook SDK, which is a Library project to your own. You cannot install Facebook on the Emulator to test, but it will fall back to using the Internet Browser for it's authentication.

The best solution is to test on a real device. You can try using Samsung Remote Labs if you want a real device to test on but don't have one.

like image 20
biddulph.r Avatar answered Oct 20 '22 01:10

biddulph.r


If you want to install the Facebook .APK file, you need to perform the following steps:

1) Download the corresponding Facebook .APK file for your Android SDK. Please check this link: [Facebook SDK for Android v4.x Downloads1

2) If you are on Mac OSX:

Go to Android Studio > Terminal:

cd /Users/[your_username]/Library/Android/sdk (or where is the location of the SDK)

3) ./platform-tools/adb install /Users/admin/Downloads/Facebook-some_version.apk

4) You should see a "Success" message.

Good luck !

like image 33
Stefan Ciprian Hotoleanu Avatar answered Oct 20 '22 01:10

Stefan Ciprian Hotoleanu