Perhaps you noticed the file proguard-rules.pro in your app directory?
Why do we need that?
Table of Contents
ProGuard
ProGuard has three use cases:
- shrinking
- obfuscating
- optimizing
Code shrinking
Often called “tree shaking”, shrinking optimizes the byte code by removing unused code.
Resource shrinking
After code shrinking all non-referenced resources will be removed as well
Obfuscation
This step shortens names of classes and members to further reduce code size.
Optimization
further reduces size by removing unused code like never executed else statements
R8
In Android Studio 3.3 Google introduced the new R8 tool which shall replace ProGuard
Since Android Studio 3.4 R8 is enabled by default.
R8 ist stil configured via the proguard-rules.pro file