Index: build/android/ant/apk-codegen.xml |
diff --git a/build/android/ant/apk-codegen.xml b/build/android/ant/apk-codegen.xml |
new file mode 100644 |
index 0000000000000000000000000000000000000000..64ade7a87fcda82886e89d896455dd77ec6a81e7 |
--- /dev/null |
+++ b/build/android/ant/apk-codegen.xml |
@@ -0,0 +1,112 @@ |
+<?xml version="1.0" encoding="UTF-8"?> |
+<!-- |
+ Copyright (C) 2005-2008 The Android Open Source Project |
+ |
+ Licensed under the Apache License, Version 2.0 (the "License"); |
+ you may not use this file except in compliance with the License. |
+ You may obtain a copy of the License at |
+ |
+ http://www.apache.org/licenses/LICENSE-2.0 |
+ |
+ Unless required by applicable law or agreed to in writing, software |
+ distributed under the License is distributed on an "AS IS" BASIS, |
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
+ See the License for the specific language governing permissions and |
+ limitations under the License. |
+--> |
+ |
+<project default="-code-gen"> |
+ <property name="verbose" value="false" /> |
+ |
+ <property name="out.dir" location="${OUT_DIR}" /> |
+ <property name="out.absolute.dir" location="${out.dir}" /> |
+ <property name="out.res.absolute.dir" location="${out.dir}/res" /> |
+ <property name="out.manifest.abs.file" location="${out.dir}/AndroidManifest.xml" /> |
+ <property name="gen.absolute.dir" value="${out.dir}/gen"/> |
+ |
+ <!-- tools location --> |
+ <property name="sdk.dir" location="${ANDROID_SDK_ROOT}"/> |
+ <property name="target" value="android-${ANDROID_SDK_VERSION}"/> |
+ <property name="android.tools.dir" location="${sdk.dir}/tools" /> |
+ <property name="android.platform.tools.dir" location="${sdk.dir}/platform-tools" /> |
+ <property name="aapt" location="${android.platform.tools.dir}/aapt" /> |
+ <property name="project.target.android.jar" location="${ANDROID_SDK_JAR}" /> |
+ |
+ <!-- jar file from where the tasks are loaded --> |
+ <path id="android.antlibs"> |
+ <pathelement path="${sdk.dir}/tools/lib/anttasks.jar" /> |
+ </path> |
+ |
+ <!-- Custom tasks --> |
+ <taskdef resource="anttasks.properties" classpathref="android.antlibs" /> |
+ |
+ <!-- |
+ Include additional resource folders in the apk, e.g. content/.../res. We |
+ list the res folders in project.library.res.folder.path and the |
+ corresponding java packages in project.library.packages, which must be |
+ semicolon-delimited while ADDITIONAL_RES_PACKAGES is space-delimited, hence |
+ the javascript task. |
+ --> |
+ <path id="project.library.res.folder.path"> |
+ <filelist files="${ADDITIONAL_RES_DIRS}"/> |
+ </path> |
+ <path id="project.library.bin.r.file.path"> |
+ <filelist files="${ADDITIONAL_R_TEXT_FILES}"/> |
+ </path> |
+ <script language="javascript"> |
+ var before = project.getProperty("ADDITIONAL_RES_PACKAGES"); |
+ project.setProperty("project.library.packages", before.replaceAll(" ", ";")); |
+ </script> |
+ |
+ <path id="project.library.manifest.file.path"> |
+ <filelist files="${LIBRARY_MANIFEST_PATHS}"/> |
+ </path> |
+ |
+ <!-- manifest merger default value --> |
+ <property name="manifestmerger.enabled" value="false" /> |
+ |
+ <property name="resource.absolute.dir" value="${RESOURCE_DIR}"/> |
+ |
+ <property name="manifest.file" value="${ANDROID_MANIFEST}" /> |
+ <property name="manifest.abs.file" location="${manifest.file}" /> |
+ |
+ <!-- Intermediate files --> |
+ <property name="resource.package.file.name" value="${APK_NAME}.ap_" /> |
+ |
+ <property name="aapt.ignore.assets" value="" /> |
+ |
+ <target name="-mergemanifest"> |
+ <mergemanifest |
+ appManifest="${manifest.abs.file}" |
+ outManifest="${out.manifest.abs.file}" |
+ enabled="${manifestmerger.enabled}"> |
+ <library refid="project.library.manifest.file.path" /> |
+ </mergemanifest> |
+ </target> |
+ |
+ <!-- Code Generation: compile resources (aapt -> R.java), aidl --> |
+ <target name="-code-gen" depends="-mergemanifest"> |
+ <mkdir dir="${out.absolute.dir}" /> |
+ <mkdir dir="${out.res.absolute.dir}" /> |
+ <mkdir dir="${gen.absolute.dir}" /> |
+ |
+ <aapt executable="${aapt}" |
+ command="package" |
+ verbose="${verbose}" |
+ manifest="${out.manifest.abs.file}" |
+ androidjar="${project.target.android.jar}" |
+ rfolder="${gen.absolute.dir}" |
+ nonConstantId="false" |
+ libraryResFolderPathRefid="project.library.res.folder.path" |
+ libraryPackagesRefid="project.library.packages" |
+ libraryRFileRefid="project.library.bin.r.file.path" |
+ ignoreAssets="${aapt.ignore.assets}" |
+ binFolder="${out.absolute.dir}" |
+ proguardFile="${out.absolute.dir}/proguard.txt"> |
+ <res path="${out.res.absolute.dir}" /> |
+ <res path="${resource.absolute.dir}" /> |
+ </aapt> |
+ |
+ <touch file="${STAMP}" /> |
+ </target> |
+</project> |