Skip to content
This repository has been archived by the owner on May 24, 2022. It is now read-only.

Commit

Permalink
SDK r14
Browse files Browse the repository at this point in the history
  • Loading branch information
geometer committed Oct 21, 2011
1 parent 64f068a commit 47ce3f9
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 27 deletions.
18 changes: 18 additions & 0 deletions ant.properties
@@ -0,0 +1,18 @@
# This file is used to override default values used by the Ant build system.
#
# This file must be checked in Version Control Systems, as it is
# integral to the build system of your project.

# This file is only used by the Ant script.

# You can use this to override default values such as
# 'source.dir' for the location of your java source folder and
# 'out.dir' for the location of your output folder.

# You can also use it define how the release builds are signed by declaring
# the following properties:
# 'key.store' for the location of your keystore and
# 'key.alias' for the name of the key to use.
# The password will be asked during the build when you use the 'release' target.

application-package=org.geometerplus.zlibrary.ui.android.library
3 changes: 0 additions & 3 deletions build.properties

This file was deleted.

38 changes: 19 additions & 19 deletions build.xml
@@ -1,22 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project name="FBReaderJ" default="package"> <project name="FBReaderJ" default="help">
<property file="local.properties" /> <loadproperties srcFile="local.properties" />
<property file="build.properties" /> <property file="ant.properties" />
<property file="default.properties" /> <loadproperties srcFile="project.properties" />


<path id="android.antlibs"> <!-- quick check on sdk.dir -->
<pathelement path="${sdk.dir}/tools/lib/anttasks.jar" /> <fail
<pathelement path="${sdk.dir}/tools/lib/sdklib.jar" /> message="sdk.dir is missing. Make sure to generate local.properties using 'android update project'"
<pathelement path="${sdk.dir}/tools/lib/androidprefs.jar" /> unless="sdk.dir"
<pathelement path="${sdk.dir}/tools/lib/apkbuilder.jar" /> />
<pathelement path="${sdk.dir}/tools/lib/jarutils.jar" />
</path>

<taskdef name="setup"
classname="com.android.ant.SetupTask"
classpathref="android.antlibs" />

<setup />


<target name="init" description="Initialization..."> <target name="init" description="Initialization...">
<fail message="Ant 1.7.0 or higher is required. Please upgrade your ant."> <fail message="Ant 1.7.0 or higher is required. Please upgrade your ant.">
Expand Down Expand Up @@ -73,9 +65,15 @@
<echo message="DONE (Copying icons files to 'res/drawable/' folder)" /> <echo message="DONE (Copying icons files to 'res/drawable/' folder)" />
</target> </target>


<target name="package" depends="init, resources, native, release" /> <target name="-pre-build" depends="init, resources, native">
<target name="dbg" depends="init, resources, native, debug" /> </target>
<!--
<target name="-pre-compile">
</target>
<target name="-post-compile">
</target>
-->
<target name="clean"> <target name="clean">
<echo message="Deleting temporary files..." /> <echo message="Deleting temporary files..." />
<delete dir="gen" /> <delete dir="gen" />
Expand All @@ -92,4 +90,6 @@
<delete dir="libs/armeabi-v7" /> <delete dir="libs/armeabi-v7" />
<echo message="DONE (Deleting native libraries)" /> <echo message="DONE (Deleting native libraries)" />
</target> </target>

<import file="${sdk.dir}/tools/ant/build.xml" />
</project> </project>
10 changes: 5 additions & 5 deletions default.properties → project.properties
@@ -1,13 +1,13 @@
# This file is automatically generated by Android Tools. # This file is automatically generated by Android Tools.
# Do not modify this file -- YOUR CHANGES WILL BE ERASED! # Do not modify this file -- YOUR CHANGES WILL BE ERASED!
# #
# This file must be checked in Version Control Systems. # This file must be checked in Version Control Systems.
# #
# To customize properties used by the Ant build system use, # To customize properties used by the Ant build system use,
# "build.properties", and override values to adapt the script to your # "ant.properties", and override values to adapt the script to your
# project structure. # project structure.


# Project target.
target=android-8
java.encoding=utf-8 java.encoding=utf-8
proguard.config=proguard.cfg proguard.config=proguard.cfg
# Project target.
target=android-8

0 comments on commit 47ce3f9

Please sign in to comment.