To build RoadEagle with Eclipse:

* Create a new Eclipse workspace.

* In the menu, choose File > New > Other…, then choose Android > Android Project from Existing Code.
  Choose the RoadEagle source directory (in which this README resides) and complete the wizard.
  
* Add the required Android support libraries, which can be found in your Android SDK directory, in
  extras/android/support/vX/LIBNAME/ (insert version and library name as appropriate). Step-by-step
  instructions can be found at https://stackoverflow.com/a/26878804/2703209. You will need the
  following libraries:
  
  * appcompat-v7
  * preference-v7 (depends on appcompat-v7)
  * preference-v14 (depends on appcompat-v7 and preference-v7)

  You may need to edit the build paths to make sure nothing is excluded—Maven projects seem to exclude
  certain files contained in local dependencies.

* Make sure you have cloned all subrepositories. If you haven’t done so yet, do:
  git submodule update --init --recursive
  (same applies when new submodules have been added upstream)
  
* For each subdirectory, navigate to its src directory and add it as a source path.
  
That’s it! You can now build and install RoadEagle by issuing the following commands on the command line:

    ./gradlew build
    ./gradlew installDebug

Building and installing from Eclipse currently does not work because the Maven plugin does not recognize the
AAR import for ThreeTenABP and reports missing dependencies.

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*
