I get these warnings when I try to obfuscate the code using proguard
Warning: com.facebook.CustomTabActivity: can't find referenced field 'boolean appdynamicsGeneratedBuildId_**' in program class com.appdynamics.eumagent.runtime.BuildInfoWarning: c...
Solved it using following lines in proguard config
-keep class com.appdynamics.eumagent.runtime.BuildInfo-keep @com.appdynamics.eumagent.runtime.BuildInfo class * { *; }