Lines Matching full:proguard
736 This is only active in release builds when proguard.config is defined
739 To replace Proguard with a different obfuscation engine:
752 <if condition="${proguard.enabled}">
754 <property name="obfuscate.absolute.dir" location="${out.absolute.dir}/proguard" />
757 <!-- input for dex will be proguard's output -->
760 <!-- Add Proguard Tasks -->
761 <property name="proguard.jar" location="${android.tools.dir}/proguard/lib/proguard.jar" />
762 <taskdef name="proguard" classname="proguard.ant.ProGuardTask" classpath="${proguard.jar}" />
793 <!-- Turn the path property ${proguard.config} from an A:B:C property
795 suitable for processing by the ProGuard task. Note - this does
797 are added under the <proguard> call below.
799 <path id="proguard.configpath">
800 <pathelement path="${proguard.config}"/>
802 <pathconvert pathsep='" -include "' property="proguard.configcmd" refid="proguard.configpath"/>
809 <proguard>
810 -include "${proguard.configcmd}"
818 </proguard>
961 <!-- proguard is never enabled in debug mode -->
962 <property name="proguard.enabled" value="false"/>
1014 <echo level="info">proguard.config is ${proguard.config}</echo>
1015 <condition property="proguard.enabled" value="true" else="false">
1018 <isset property="proguard.config" />
1021 <if condition="${proguard.enabled}">
1023 <echo level="info">Proguard.config is enabled</echo>