Skip to content

Instantly share code, notes, and snippets.

View kamilolesiejuk's full-sized avatar

Kamil Olesiejuk kamilolesiejuk

View GitHub Profile
@kamilolesiejuk
kamilolesiejuk / gist:938878
Created April 23, 2011 19:00 — forked from charroch/gist:921679
Zoidberg action handling draft
trait AndroidDeviceAction
case class Install extends AndroidDeviceAction
case class Instrument(options:InstrumentOptions) extends AndroidDeviceAction
case class Monkey extends AndroidDeviceAction
case class MoneyScript(script:Script) extends AndroidDeviceAction
trait AndroidDevice extends Actor {
def receive = {
case Install => // install app
case Instrument =>
@kamilolesiejuk
kamilolesiejuk / pom_app.xml
Created August 12, 2010 14:18
Novoda blog: Android CI
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>novoda.weeworld</groupId>
<artifactId>weeworld-dev</artifactId>
<version>1.14.0_lmh</version>
</parent>
<artifactId>weeworld</artifactId>
<packaging>apk</packaging>