-1

Where can i download the jar file for com.android.support packages such as com.android.support:appcompat-v7 or com.android.support:design ?

I looked at mavenCentral and jCenter but there was nothing there.

EDIT:

probably get wasn't the right word to use. i want to download them and use them offline.

yooneskh
  • 784
  • 7
  • 11

1 Answers1

1

YOu can get it from gradle. If you are using Android Studio just go to build.gradle and add the following under depedencies

       compile 'com.android.support:design:23.2.1'
       compile 'com.android.support:appcompat-v7:23.2.1'
Ragesh Ramesh
  • 3,470
  • 2
  • 14
  • 20
  • Sorry, probably `get` wasn't the right word to use. i want to download them and use them locally, offline. – yooneskh Mar 29 '16 at 10:12