I want to add AndroidImageSlider library to my project
library link --> click here
but how can i do that?
please help me.
After you've downloaded it from here , just import it from file -> import -> Existing Project To Workspace , select your Project and Import . then in your project properties , android section , panel below android Api's, add that library to your project .
Edit : Steps to add a library Project to Existing Project :
1 - download Library Project File
2 - import that library to the eclipse file -> import -> Existing Project To Workspace -> Browse to your File
3 - if the IsLibrary tick marck doesn't have checked , check that to inform that project as a library project in Properties -> Android
4- inside your Main Project properties Android -> Library -> add -> your library project
** if the library project path has been changed you have update your main project reference to the new path remove it again and add updated path to your library project.
Related
I have jar file(use like library) in lib folder in android studio project.
I added another android studio project to the first project.
Added another project steps: File -> New -> Import Module.
I want to use with the file jar from the first project in the another project that I added.
How can I do this?
you should add that library again to your new project by following this file -> new -> import module.
How to add Android-wheel library(https://github.com/chemalarrea/Android-wheel) to android studio?
Its as simple as other library integration in android studio.
I've listed steps below just follow it you will get android-wheel lib support to your studio project.
1) Download library from github.
2) go to android studio project File -> new -> import module.
- choose android-wheel library.
after above steps library should appear within android studio project explorer.
now you have to add dependency for that follow below steps
1) Right click on your project -> choose Open module settings -> from left
panel choose your project (not android-wheel library)
2) after choosing your project go to dependencies tab in right side frame.
3) press '+' and choose module dependencies and select android-wheel lib.
That's it...
Happy Coding! :)
Please find how to import any module to android studio project from here :
Please follow below steps :
Click on File -> New -> Import New Module.
Add Souce Directory path as library root level path.
Click 'OK' and 'Finish'.
Go to project setting -> Modules -> app -> dependencies -> click in '+' ->
add module ->add wheel module here.
Now build your project and run.And if you found any error let me know.
Please refer below link for reference.!!
https://stackoverflow.com/a/32118213/4018207
Thanks
I've a project in Android Studio and I want import a library ZXing. I downloaded the folder not the jar but how can I import it? thanks
Follow below steps:
Goto File
Click -> Import Module...
Then select you library project folder.
After importing library project.
Goto File
Click-> Project Structure
Select your main project from Module section [Left Pane]
Then click on Dependency Tab on Right Side
Click on + icon on Right Side -> Select Module Dependency -> Choose Module
I want to use this github project in my existing android app. Could anyone elaborate how to do that ?
Step 1 : Download Zip file
Step 2 : unzip Downloaded file
Step 3 : Open Eclipse New->Android Project->Android Project from existing source->
Browse downloaded project
Step : 4 Right click project folder Go Properties->Android-> and make this project as library
Step : in your project go properties-> android-> Add Library -> and select library project which you import
Step 5 : Now re-build your project
Now .You able to used all class as library in your existing project
For more information see How to include GitHub library to your existing Android project in eclipse thread
I have zip file of Android-wheel but dont know how to use it into my project.What possible things can i do, Please suggest me.
You need to unzip the zip file to some directory, and in your android project under build-path choose add external jar, and choose the jar in the unzipped directory.
Update:
I checked Android-Wheel out and you will have to import the project from the google-code svn Android Wheel. In eclipse if you go to create a new project there should be a import from svn option. Once you do and the project is imported you can set it up as a library project and then use it in your app. To do that right click on your project, choose the android tab, and choose add under the libraries section.
I just made this tutorial, hope this helps those who use android wheel for the first time.
http://tolkianaa.blogspot.mx/2012/03/do-not-try-to-reinvent-wheel.html
*Download project with Svn
*Import the project into Eclipse
* Once you import the project in the Eclipse, Right click on the project -> Properties -> Choose android tab and check the IsLibrary option
* Now Right click on your project -> Properties -> Choose android tab -> In the Library section add the imported project.