How can i import this library to my project in android studio spinnerwheel
Asked
Active
Viewed 170 times
-12
-
1take a library folder, and use File-New-Import Module, as always – Vladyslav Matviienko Jul 14 '15 at 12:32
-
please give me some steps – Osama Raddad Jul 14 '15 at 12:33
-
http://stackoverflow.com/questions/21170395/how-to-include-a-library-module-dependency-in-an-android-studio-project/21170626#21170626 – gersonmdesouza Jul 14 '15 at 12:34
-
there is nothing to give - there's only 1 step - you point a directory, and press finish – Vladyslav Matviienko Jul 14 '15 at 12:35
-
https://github.com/MagicMicky/FreemiumLibrary/wiki/Import-the-library-in-Android-Studio – ask4solutions Jul 14 '15 at 12:36
1 Answers
1
Download that zip from github
You should put your library modules inside the Application Project. In order to specify a module dependency, simply:
- Right click on Application->Open Module Settings
- Click on the '+' icon
- Select the root directory for your library module you'd like to add.
- 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:
- Select your Application module
- Select the Dependencies tab on the right
- Click the '+' icon on the bottom
- Select Module Dependency
- Select your desired library module

N J
- 27,217
- 13
- 76
- 96