-12

How can i import this library to my project in android studio spinnerwheel

Osama Raddad
  • 344
  • 3
  • 17

1 Answers1

1

Download that zip from github

You should put your library modules inside the Application Project. In order to specify a module dependency, simply:

  1. Right click on Application->Open Module Settings
  2. Click on the '+' icon
  3. Select the root directory for your library module you'd like to add.
  4. Follow the prompts

Then, this module will show up in your project. Then, you need to add it to Application as a library dependency. Once again, in your Module Settings:

  1. Select your Application module
  2. Select the Dependencies tab on the right
  3. Click the '+' icon on the bottom
  4. Select Module Dependency
  5. Select your desired library module
N J
  • 27,217
  • 13
  • 76
  • 96