-
Notifications
You must be signed in to change notification settings - Fork 89
Importing to Android Studio
mohamad-amin edited this page Aug 1, 2015
·
22 revisions
- Download the project as a zip file and extract it on your computer.
- In Android Studio, Open File -> New -> New Module.
- In the newly opened window under the More Modules click Import Existing Project and set the Source Directory as the directory that you extracted the downloaded zip and click finish.
- Open your build.gradle file in the app module and add this line to your dependencies:
compile project(':persianmaterialdatetimepicker')
So now your build.gradle should look like this:
dependencies {
... other dependencies
compile project(':materialDateTimePicker')
}
- Sync Gradle with your project and its done! you can now use the library within your project.