How do I use the android compatibility packs with Intellij idea?
This page discribes the process for eclipse http://developer.android.com/sdk/compatibility-library.html
Setting Up a Project to Use a Library
To add one of the libraries to your Android project:
- In your Android project, create a directory named
libs
at the root of your project (next tosrc/
,res/
, etc.) - Locate the JAR file for the library you want to use and copy it into the
libs/
directory.For example, the library that supports API level 4 and up is located at
<sdk>/extras/android/compatibility/v4/android-support-v4.jar
.
In Eclipse, right-click the JAR file in the Package Explorer, select Build Path > Add to Build Path. You should then see the JAR file appear in a new directory called Referenced Libraries.
How do I use these in jIdea? thanks
Please sign in to leave a comment.
I'm still new at Android and IntelliJ, but try this:
Go to the Project Structure dialog
There select SDKs
In the column where the various SDKs appear, select your Android SDK.
On the right where it shows that path to your android SDK, select the Classpath tab
On the far right, click the "Add ..." button and navigate to the .jar file that you want to add.
I think that should work.
This is the way that I added the google maps.jar to my project.