| OLD | NEW |
| 1 <?xml version="1.0" encoding="UTF-8"?> | 1 <?xml version="1.0" encoding="UTF-8"?> |
| 2 <!-- | 2 <!-- |
| 3 Copyright (C) 2005-2008 The Android Open Source Project | 3 Copyright (C) 2005-2008 The Android Open Source Project |
| 4 | 4 |
| 5 Licensed under the Apache License, Version 2.0 (the "License"); | 5 Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 you may not use this file except in compliance with the License. | 6 you may not use this file except in compliance with the License. |
| 7 You may obtain a copy of the License at | 7 You may obtain a copy of the License at |
| 8 | 8 |
| 9 http://www.apache.org/licenses/LICENSE-2.0 | 9 http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | 10 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 <pathelement path="${sdk.dir}/tools/lib/anttasks.jar" /> | 27 <pathelement path="${sdk.dir}/tools/lib/anttasks.jar" /> |
| 28 </path> | 28 </path> |
| 29 | 29 |
| 30 <!-- Custom tasks --> | 30 <!-- Custom tasks --> |
| 31 <taskdef resource="anttasks.properties" classpathref="android.antlibs" /> | 31 <taskdef resource="anttasks.properties" classpathref="android.antlibs" /> |
| 32 | 32 |
| 33 <condition property="build.target" value="release" else="debug"> | 33 <condition property="build.target" value="release" else="debug"> |
| 34 <equals arg1="${CONFIGURATION_NAME}" arg2="Release" /> | 34 <equals arg1="${CONFIGURATION_NAME}" arg2="Release" /> |
| 35 </condition> | 35 </condition> |
| 36 <condition property="build.is.packaging.debug" value="true" else="false"> | 36 <condition property="build.is.packaging.debug" value="true" else="false"> |
| 37 <equals arg1="build.target" arg2="debug" /> | 37 <equals arg1="${build.target}" arg2="debug" /> |
| 38 </condition> | 38 </condition> |
| 39 | 39 |
| 40 <!-- Disables automatic signing. --> | 40 <!-- Disables automatic signing. --> |
| 41 <property name="build.is.signing.debug" value="false"/> | 41 <property name="build.is.signing.debug" value="false"/> |
| 42 | 42 |
| 43 <!-- SDK tools assume that out.packaged.file is signed and name it "...-unalig
ned" --> | 43 <!-- SDK tools assume that out.packaged.file is signed and name it "...-unalig
ned" --> |
| 44 <property name="out.packaged.file" value="${UNSIGNED_APK_PATH}" /> | 44 <property name="out.packaged.file" value="${UNSIGNED_APK_PATH}" /> |
| 45 | 45 |
| 46 <property name="native.libs.absolute.dir" location="${NATIVE_LIBS_DIR}" /> | 46 <property name="native.libs.absolute.dir" location="${NATIVE_LIBS_DIR}" /> |
| 47 | 47 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 65 verbose="${verbose}" | 65 verbose="${verbose}" |
| 66 hascode="true" | 66 hascode="true" |
| 67 previousBuildType="/" | 67 previousBuildType="/" |
| 68 buildType="${build.is.packaging.debug}/${build.is.signing.debug}"> | 68 buildType="${build.is.packaging.debug}/${build.is.signing.debug}"> |
| 69 <dex path="${intermediate.dex.file}"/> | 69 <dex path="${intermediate.dex.file}"/> |
| 70 <sourcefolder path="${source.absolute.dir}"/> | 70 <sourcefolder path="${source.absolute.dir}"/> |
| 71 <nativefolder path="${native.libs.absolute.dir}" /> | 71 <nativefolder path="${native.libs.absolute.dir}" /> |
| 72 </apkbuilder> | 72 </apkbuilder> |
| 73 </target> | 73 </target> |
| 74 </project> | 74 </project> |
| OLD | NEW |