How to use Android Wheel in my project

I have a zip file with an Android wheel, but I don’t know how to use it in my project. What possible things can I do, please suggest me.

+4
source share
3 answers

You need to unzip the zip file to some directory, and in your Android project in build mode, select add an external jar and select a jar in the unpacked directory.

Update: I checked Android-Wheel and you have to import the project from Google svn code of Android Wheel . In eclipse, if you are going to create a new project, there must be an import from the svn option. When you do this and the project is imported, you can configure it as a library project, and then use it in your application. To do this, right-click on your project, select the android tab and select "Add" in the "Libraries" section.

+8
source

I just made this tutorial, hope this helps those who use the Android wheel for the first time.

http://tolkianaa.blogspot.mx/2012/03/do-not-try-to-reinvent-wheel.html

+6
source

* Download the project from Svn * Import the project into Eclipse * As soon as you import the project into Eclipse, right-click on the project β†’ Properties β†’ Select the android tab and check the IsLibrary box * Now right-click on your project β†’ Properties β†’ Select the Android tab β†’ In the "Library" section, add the imported project.

+4
source

Source: https://habr.com/ru/post/1343861/


All Articles