Deborah
Deborah

Reputation: 355

Extends Android APIs

I work with Eclipse and implement some applications using the Android Emulator.

I'd like to know:

  1. is it possible to extend Android APIs with other .jar file?
  2. If it's possible, how can I extend the APIs? I just have to add libraries to the project or do I copy it to the $ANDROID_HOME/platforms/android-8/tools/lib

Upvotes: 1

Views: 590

Answers (1)

Robby Pond
Robby Pond

Reputation: 73484

If you want to use thirdparty jars you just need to include them in your Android application. You can do that putting them in a lib directory under your android project or adding them to your build path. You do not need to add anything to the SDK.

Upvotes: 1

Related Questions