From 9eaf90fcda930708a107dcdbdd7acd56e02ed813 Mon Sep 17 00:00:00 2001 From: Branden Archer Date: Sun, 27 Dec 2015 17:36:45 -0500 Subject: [PATCH] Use Travis CI to build project --- .travis.yml | 9 +++++ README.md | 2 + build.xml | 92 ++++++++++++++++++++++++++++++++++++++++++++++ project.properties | 14 +++++++ 4 files changed, 117 insertions(+) create mode 100644 .travis.yml create mode 100644 build.xml create mode 100644 project.properties diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..cd1dc71 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,9 @@ +language: android +android: + components: + - build-tools-21.1.1 + - android-17 +script: + - echo "Travis branch is $TRAVIS_BRANCH" + - echo "Travis branch is in pull request $TRAVIS_PULL_REQUEST" + - ant debug diff --git a/README.md b/README.md index 8303b26..bc0bd9c 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,8 @@ # protect-baby-monitor An Open Source Baby Monitor for Android +[![Build Status](https://travis-ci.org/brarcher/protect-baby-monitor.svg?branch=master)](https://travis-ci.org/brarcher/protect-baby-monitor) + _Protect Baby Monitor_ allows two Android devices to act as a baby monitor. The first device, left in the room with the baby, will advertise itself on the network and stream audio to a connected client. The second device, with the parent, will connect to the monitoring diff --git a/build.xml b/build.xml new file mode 100644 index 0000000..e46c414 --- /dev/null +++ b/build.xml @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/project.properties b/project.properties new file mode 100644 index 0000000..a3ee5ab --- /dev/null +++ b/project.properties @@ -0,0 +1,14 @@ +# This file is automatically generated by Android Tools. +# Do not modify this file -- YOUR CHANGES WILL BE ERASED! +# +# This file must be checked in Version Control Systems. +# +# To customize properties used by the Ant build system edit +# "ant.properties", and override values to adapt the script to your +# project structure. +# +# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): +#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt + +# Project target. +target=android-17