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 19 matching lines...) Expand all Loading... |
30 <property name="android.tools.dir" location="${sdk.dir}/tools" /> | 30 <property name="android.tools.dir" location="${sdk.dir}/tools" /> |
31 | 31 |
32 <property name="project.target.android.jar" location="${ANDROID_SDK_JAR}" /> | 32 <property name="project.target.android.jar" location="${ANDROID_SDK_JAR}" /> |
33 <path id="project.target.class.path"> | 33 <path id="project.target.class.path"> |
34 <pathelement location="${project.target.android.jar}" /> | 34 <pathelement location="${project.target.android.jar}" /> |
35 </path> | 35 </path> |
36 | 36 |
37 | 37 |
38 <!-- jar file from where the tasks are loaded --> | 38 <!-- jar file from where the tasks are loaded --> |
39 <path id="android.antlibs"> | 39 <path id="android.antlibs"> |
40 <pathelement path="${sdk.dir}/tools/lib/anttasks.jar" /> | 40 <pathelement path="${sdk.dir}/tools/lib/ant-tasks.jar" /> |
41 </path> | 41 </path> |
42 | 42 |
43 <!-- Custom tasks --> | 43 <!-- Custom tasks --> |
44 <taskdef resource="anttasks.properties" classpathref="android.antlibs" /> | 44 <taskdef resource="anttasks.properties" classpathref="android.antlibs" /> |
45 | 45 |
46 <!-- Classpath for javac --> | 46 <!-- Classpath for javac --> |
47 <path id="javac.custom.classpath"> | 47 <path id="javac.custom.classpath"> |
48 <filelist files="${INPUT_JARS_PATHS}"/> | 48 <filelist files="${INPUT_JARS_PATHS}"/> |
49 </path> | 49 </path> |
50 | 50 |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 -dump "${obfuscate.absolute.dir}/dump.txt" | 148 -dump "${obfuscate.absolute.dir}/dump.txt" |
149 -printseeds "${obfuscate.absolute.dir}/seeds.txt" | 149 -printseeds "${obfuscate.absolute.dir}/seeds.txt" |
150 -printusage "${obfuscate.absolute.dir}/usage.txt" | 150 -printusage "${obfuscate.absolute.dir}/usage.txt" |
151 -printmapping "${obfuscate.absolute.dir}/mapping.txt" | 151 -printmapping "${obfuscate.absolute.dir}/mapping.txt" |
152 </proguard> | 152 </proguard> |
153 </then> | 153 </then> |
154 </if> | 154 </if> |
155 <touch file="${STAMP}" /> | 155 <touch file="${STAMP}" /> |
156 </target> | 156 </target> |
157 </project> | 157 </project> |
OLD | NEW |