| 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 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 <pathconvert pathsep='" -include "' property="proguard.configcmd" | 153 <pathconvert pathsep='" -include "' property="proguard.configcmd" |
| 154 refid="proguard.configpath"/> | 154 refid="proguard.configpath"/> |
| 155 | 155 |
| 156 <mkdir dir="${obfuscate.absolute.dir}"/> | 156 <mkdir dir="${obfuscate.absolute.dir}"/> |
| 157 <delete file="${preobfuscate.jar.file}"/> | 157 <delete file="${preobfuscate.jar.file}"/> |
| 158 <delete file="${obfuscated.jar.abs.file}"/> | 158 <delete file="${obfuscated.jar.abs.file}"/> |
| 159 <jar basedir="${out.classes.absolute.dir}" | 159 <jar basedir="${out.classes.absolute.dir}" |
| 160 destfile="${preobfuscate.jar.file}"/> | 160 destfile="${preobfuscate.jar.file}"/> |
| 161 <proguard> | 161 <proguard> |
| 162 -include "${proguard.configcmd}" | 162 -include "${proguard.configcmd}" |
| 163 -include "${out.absolute.dir}/proguard.txt" | |
| 164 -injars ${project.all.classes.value} | 163 -injars ${project.all.classes.value} |
| 165 -outjars "${obfuscated.jar.abs.file}" | 164 -outjars "${obfuscated.jar.abs.file}" |
| 166 -libraryjars ${project.target.classpath.value} | 165 -libraryjars ${project.target.classpath.value} |
| 167 -dump "${obfuscate.absolute.dir}/dump.txt" | 166 -dump "${obfuscate.absolute.dir}/dump.txt" |
| 168 -printseeds "${obfuscate.absolute.dir}/seeds.txt" | 167 -printseeds "${obfuscate.absolute.dir}/seeds.txt" |
| 169 -printusage "${obfuscate.absolute.dir}/usage.txt" | 168 -printusage "${obfuscate.absolute.dir}/usage.txt" |
| 170 -printmapping "${obfuscate.absolute.dir}/mapping.txt" | 169 -printmapping "${obfuscate.absolute.dir}/mapping.txt" |
| 171 </proguard> | 170 </proguard> |
| 172 </then> | 171 </then> |
| 173 </if> | 172 </if> |
| 174 <touch file="${STAMP}" /> | 173 <touch file="${STAMP}" /> |
| 175 </target> | 174 </target> |
| 176 </project> | 175 </project> |
| OLD | NEW |