FAZ
FAZ

Reputation: 285

Import libraries in Android studio project to Eclipse

I have a Android Studio project and I want the same in Eclipse. So I created a sample project in Eclipse and copied the files in java folder of Android Studio to src folder in Eclipse. I also copy pasted the res and Manifest of Android Studio to Eclipse.

Now, I have some errors in java files in src folder due to some missing libraries. I know its because of the missing libraries in Eclipse and i want to import them from Android Studio project. But in Android project, I am not able to find the libraries. Maybe they are in build.gradle script. How do I get these libraries and use in my Eclipse project?

Upvotes: 0

Views: 197

Answers (1)

iSrinivasan27
iSrinivasan27

Reputation: 1426

You can find android jars from your sdk like android-support-design from sdk\extras\android\support\design\libs and do more.

External jars like retrofit, okhttp and more

http://www.java2s.com/Code/Jar/

Upvotes: 1

Related Questions