[Android] How to Import External Libraries and SDKs

Tadashi Shigeoka ·  Tue, April 2, 2013

A memo on how to import external libraries in Android.

  1. Import external libraries (such as Facebook SDK) via [File] - [Import] - [Existing Projects into Workspace].
  2. Right-click the project - [Properties] - [Android] - [Library] and add the ones you want to use with the "Add" button.

    Then, a reference to the external SDK will be added to project.properties like this:

    android.library.reference.1=../FacebookSDK
    

[Reference]

プロジェクトの作成 << mixi Developer Center (ミクシィ デベロッパーセンター)

That’s all from the Gemba.