7807e31b22
android / Build + lint + test (push) Failing after 2m55s
Unit tests touching Android framework statics (Bundle.EMPTY, android.os.Bundle constructor in MediaItem/SessionCommand construction) failed with NPE/ExceptionInInitializerError because JVM unit tests run against android.jar's stub classes whose methods throw "Method ... not mocked" by default. Enable isReturnDefaultValues so stub methods return defaults — Bundle.EMPTY ends up null and is fine because we just thread it through SessionCommand without inspecting it. Fixes LikeMediaCallbackTest's 5 failures on run #311. Lightweight — no Robolectric, no androidTest. The first JVM-side test file in the project to touch Android framework classes.