This document summarizes the presentation on ProGuard by Eric Lafortune at the #mceconf conference on January 11, 2014. ProGuard is an optimizer and obfuscator tool included in the Android SDK. It shrinks, optimizes, and obfuscates Android applications bytecode. Using ProGuard can significantly reduce application sizes and improve performance. It removes unused code, performs optimizations at the bytecode level, and obfuscates the code to make reverse engineering more difficult. The document provides examples of how ProGuard can reduce application sizes by 20-90%, improve performance by up to 20%, and demonstrates optimizations like inlining, constant propagation, and enum handling. It also explains how to configure and enable ProGuard in Android builds