Tanvi Goyal
05/06/2021, 2:08 PMUnable to get provider androidx.work.impl.WorkManagerInitializer: java.lang.ClassNotFoundException: Didn't find class "androidx.work.impl.WorkManagerInitializer" on path: DexPathList
After researching a bit, I found this maybe due to the obfuscation done by proguard on the classNames used to instantiate the Worker classes. Tried to fix this by adding this in the proguard but with no luck.
-keep class androidx.work.** { *; }
Any idea what I am missing here ?