Skip to content

Latest commit

 

History

History
46 lines (26 loc) · 1.16 KB

README.md

File metadata and controls

46 lines (26 loc) · 1.16 KB

#Gradle Android Example

This is an example app that uses [gradle-android-plugin] (https://github.com/jvoegele/gradle-android-plugin), tests with JUnit and [Robolectric] (https://github.com/pivotal/robolectric/) and tunes eclipse-plugin to enable running it either from Eclipse IDE or from command line.

##Requirements

##Gradle Tasks

###Resolve dependencies:

gradle dependencies

###Generate the apk package:

gradle clean build

It can be found under build/distributions.

###Run tests:

gradle test

###Install onto a running emulator or device:

gradle androidInstall

###Eclipse metadata

gradle cleanEclipse
gradle eclipse