You've already forked android_translation_layer
mirror of
https://gitlab.com/android_translation_layer/android_translation_layer.git
synced 2025-10-27 11:48:10 -07:00
api-impl: add misc stubs
This commit is contained in:
@@ -739,6 +739,10 @@ public final class Bundle implements Cloneable {
|
||||
public boolean getBoolean(String key, boolean defaultValue) {
|
||||
Object o = mMap.get(key);
|
||||
System.out.println("bundle.getBoolean(" + key + ", " + defaultValue + ") called");
|
||||
/* the default for this is very scummy */
|
||||
if(key.equals("com.facebook.sdk.AutoLogAppEventsEnabled")) {
|
||||
return false;
|
||||
}
|
||||
if (o == null) {
|
||||
return defaultValue;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user