I am using FirebaseFirestore in my project. When i am in debug mode, minifyEnabled FALSE, the app runs just fine, but when I build a signed .apk, minifyEnabled TRUE, it doesn't work as I expect. i.e it doesn't load data from firebase Firestore.
What KEEP statments should i write to exlude FIREBASE FIRESTORE and Glide classes from minifying ?
dependencies {
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.google.firebase:firebase-core:16.0.9'
implementation 'com.google.firebase:firebase-firestore:19.0.0'
implementation 'com.google.firebase:firebase-ads:17.2.0'
}