1
0
mirror of https://github.com/moparisthebest/Yaaic synced 2025-02-16 15:00:14 -05:00

config files for building yaaic via ant

This commit is contained in:
Sebastian Kaspari 2010-10-29 00:26:01 +02:00
parent 99cf534f20
commit 3f469d4074
3 changed files with 30 additions and 0 deletions

2
.gitignore vendored
View File

@ -6,3 +6,5 @@ bin/
gen/
R.java
# local ant properties
local.properties

8
build.properties Normal file
View File

@ -0,0 +1,8 @@
# Path to the key store
key.store=/home/sebastian/Documents/AndroidKeys/release-key.keystore
# Alias of key to use
key.alias=release
# Output directory for builds
out.dir=./builds/ant/

20
build.xml Normal file
View File

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<project name="Yaaic" default="help">
<property file="local.properties" />
<property file="build.properties" />
<property file="default.properties" />
<path id="android.antlibs">
<pathelement path="${sdk.dir}/tools/lib/anttasks.jar" />
<pathelement path="${sdk.dir}/tools/lib/sdklib.jar" />
<pathelement path="${sdk.dir}/tools/lib/androidprefs.jar" />
</path>
<taskdef
name="setup"
classname="com.android.ant.SetupTask"
classpathref="android.antlibs" />
<setup />
</project>