blob: f55c09a61d4bb0a780cfb126617b90dbda6e10c3 [file] [log] [blame]
# This Proguard rule ensures that ComponentInitializers are are neither shrunk nor obfuscated.
# This is because they are discovered and instantiated during application initialization.
-keep class * extends androidx.startup.Initializer {
# Keep the public no-argument constructor while allowing other methods to be optimized.
public <init>();
}
-assumenosideeffects class androidx.startup.StartupLogger