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:
parent
99cf534f20
commit
3f469d4074
2
.gitignore
vendored
2
.gitignore
vendored
@ -6,3 +6,5 @@ bin/
|
||||
gen/
|
||||
R.java
|
||||
|
||||
# local ant properties
|
||||
local.properties
|
||||
|
8
build.properties
Normal file
8
build.properties
Normal 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
20
build.xml
Normal 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>
|
Loading…
Reference in New Issue
Block a user