1 # Contributing 2 3 DroidDriver issues are [tracked on GitHub](https://github.com/appium/droiddriver/issues) 4 5 The [`master` branch](https://github.com/appium/droiddriver/tree/master) on GitHub tracks [the AOSP master branch](https://android.googlesource.com/platform/external/droiddriver). [All releases](releasing_to_jcenter.md) are made from the master branch. 6 7 Code changes should be [submitted to AOSP](contributing_aosp.md) and then they'll be synced to GitHub once they've passed code reivew on Gerrit. 8 9 #### Requirements 10 11 Gradle 2.2.1 or better is required to be installed on the system. In Android Studio, you'll need to provide the gradle location. 12 13 On Mac OSX with homebrew, `brew install gradle` will install gradle. To locate the path, use `brew info gradle` The homebrew path follows this format: `/usr/local/Cellar/gradle/2.2.1/libexec` 14 15 If you installed gradle using the zip (`gradle-2.2.1-bin.zip`), then the path will be the `gradle-2.2.1` folder. 16 17 #### Import into Android Studio 18 19 - Clone from git 20 - Launch Android Studio and select `Open an existing Android Studio project` 21 - Navigate to `droiddriver/build.gradle` and press Choose 22 - Select `Use local gradle distribution` and enter the Gradle path 23 - Android Studio will now import the project successfully 24