To build Qz with Eclipse:

* Create a new Eclipse workspace.

* In the menu, choose File > New > Other…, then choose Android > Android Project from Existing Code.
  Choose the Qz source directory (in which this README resides) and complete the wizard.
  
* Add the appcompat-v7 library. Step-by-step instructions can be found at
  https://stackoverflow.com/a/26878804/2703209. The library is in your Android SDK directory, in
  extras/android/support/v7/appcompat/. Add a reference to the library to your Qz project.
  
* Make sure you have cloned all subrepositories. If you haven’t done so yet, do:
  git submodule update --init --recursive
  
* Add a project fir RDS Surveyor: In the menu, choose File > Import…, then choose
  General > Existing Projects into Workspace. Choose contrib/rdssurveyor/RDSSurveyor (in the Qz source
  directory) as the path and complete the wizard.
  
* Add RDS Surveyor to the Qz project: In the Qz project properties (accessible by right-clicking the
  project), go to Java Build Path, change to the Projects tab and add the RDSSurveyor project.
  
That’s it! You now have two ways to build and install Qz—either from Eclipse, or by issuing the
following commands on the command line:

    gradle build
    gradle installDebug

If you really want to use Android Studio, feel free to do so, but:

* use `build.gradle` to import the project
* keep paths intact
* keep the toolchain intact (i.e. Android build tools and gradle versions)
* before committing, make sure you are committing code changes *only*