Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Debugger - Firebase objects are obfuscated

I currently have an Android App that is using Firebase Auth. After google login, I get a FirebaseUser object. If I set a breakpoint and look at the object. I see obfuscated objects and values. See image:

enter image description here

Proguard is disabled for debug so I'm guessing that is not the issue:

buildTypes {
    debug {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
    release {
        minifyEnabled true
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}

Anyone know what I might be doing wrong? Any help is much appreciated!

like image 770
Scott B Avatar asked Feb 23 '17 19:02

Scott B


1 Answers

Firebase library files are obsuscated themselves. You cannot really do anything about it. I guess Google does not want to make everything from their libraries public due to security reasons or using the library incorrectly.

like image 127
Piotr Zawadzki Avatar answered Nov 08 '22 19:11

Piotr Zawadzki