Reputation: 150
i import a project into android studio but i want work with android studio and want work with eclipse . i don't have any problem with import into eclipse but i don't know how load libs into eclipse from Android Studio .
in Gradle :
dependencies {
compile 'com.android.support:appcompat-v7:21.0.2'
compile 'com.android.support:cardview-v7:21.0.+'
compile 'com.android.support:recyclerview-v7:21.0.+'
compile 'com.melnykov:floatingactionbutton:1.1.0'
compile 'com.jpardogo.materialtabstrip:library:1.0.6'
}
how get this libs from android studio ?
Upvotes: 0
Views: 107
Reputation: 364928
Android Studio uses an aar format for these libraries.
You can't use this format in Eclipse.
You have to build locally these libraries in your workspace.
BTW I suggest you using only Android Studio IDE.
Upvotes: 1
Reputation: 2601
for eclips.go to sdk\extras\android\support\v7 choose the project and copy jar file from the lib folder and past your project lib folder right click on jar file
and add to bulid path. you can use all the class of project
Upvotes: 0