| Rahul Ravikumar | 10a0189 | 2020-01-10 18:23:17 -0800 | [diff] [blame] | 1 | # 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 Ravikumar | 0e9dbe7 | 2020-01-16 16:56:12 -0800 | [diff] [blame^] | 3 | -keep class * extends androidx.startup.ComponentInitializer { |
| 4 | # Keep the public no-argument constructor while allowing other methods to be optimized. | ||||
| 5 | public <init>(); | ||||
| 6 | } | ||||