Skip to content
This repository has been archived by the owner on Jun 5, 2018. It is now read-only.

Import in IDE

Sergey Shatunov edited this page Aug 29, 2014 · 22 revisions

Prerequisites

  • Be sure that you use newest SDK and SDK Build-tools

Eclipse

  • Install EGit plugin (drag this link into running Eclipse)
  • File - Import - Projects from Git - URI
  • Into Location - URI type https://github.com/Prototik/HoloEverywhere.git, press Next
  • Mark only master branch. Double Next!
  • Select Import existing projects, press Next
  • You should see all related projects, like demo and addons. Press Finish
  • Read this basic migration guide

Android Studio / IntelliJ IDEA

  • Checkout from Version Control - Git
  • Typo in Repository URL: https://github.com/Prototik/HoloEverywhere.git
  • Press 'Clone', wait until repository checkout
  • If you use Android Studio, then just click 'Yes' on the proposal to open a project. Otherwise in IDEA press Import project and specify path to downloaded repo, choose gradle model and press next.
  • Kiss a Google and Android devs team!
  • Read this basic migration guide

Maven

  • Add a HoloEverywhere repository to your pom.xml:
<project>
	<repositories>
		<repository>
			<id>holoeverywhereRepo</id>
			<name>HoloEverywhere Repo</name>
			<url>http://holoeverywhere.cf/repo</url>
			<layout>default</layout>
		</repository>
	</repositories>
</project>
  • Execute guide for your favorite IDE from above articles
  • If are you use Eclipse, also install plugin m2e-android (drag'n'drop into Eclipse)