blob: 0826b3728373fb8da8592f0bb42400c981c1c484 [file] [log] [blame]
Rahul Ravikumar10a01892020-01-10 18:23:17 -08001# This Proguard rule ensures that ComponentInitializers are are neither shrunk nor obfuscated.
2# This is because they are discovered and instantiated during application initialization.
Rahul Ravikumar0e9dbe72020-01-16 16:56:12 -08003-keep class * extends androidx.startup.ComponentInitializer {
4 # Keep the public no-argument constructor while allowing other methods to be optimized.
5 public <init>();
6}