Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where can I find android-v7 support library jar

Tags:

android

I want to use the new ActionBarActivitiy class from the v7 support library but I cannot find the support JAR anywhere. I have a v7 folder in my extras directory but it contains 3 directories and not a jar

like image 801
S-K' Avatar asked Aug 18 '13 18:08

S-K'


2 Answers

You have to update your Support Library through your SDK and then navigate to the folder where your SDK is located! Then go to : Extras->Google and you will find the Project and the jar included!

like image 168
Pavlos Avatar answered Sep 23 '22 02:09

Pavlos


ActionBarActivity is in an Android library project, not a JAR. There are instructions in the Android developer documentation for how to add an Android library project to your environment and attach it to your application project.

like image 28
CommonsWare Avatar answered Sep 19 '22 02:09

CommonsWare