-
Notifications
You must be signed in to change notification settings - Fork 105
Open
Labels
Description
I'm calling logBundleBreakDown
before calling startActivity
Intent i = new Intent(activity, ReviewMetaActivity.class);
i.putExtra(ReviewMetaActivity.ARG_FULL_PATH, fullPath);
i.putExtra(ReviewMetaActivity.REVIEW_META_ID, review_meta_id);
i.putExtra(ReviewMetaActivity.REVIEW_THREAD_ID, review_thread_id);
i.putExtra(ReviewMetaActivity.REVIEW_META_JSONSTRING, review_meta_jsonstring);
TooLargeTool.logBundleBreakdown("review-meta", i.getExtras());
activity.startActivity(i);
But log only shows
10-12 19:17:10.376 13893 13893 D TooLargeTool: ReviewMetaActivity.onSaveInstanceState wrote: Bundle@6242526 contains 2 keys and measures 38.9 KB when serialized as a Parcel
10-12 19:17:10.376 13893 13893 D TooLargeTool: * android:viewHierarchyState = 38.7 KB
10-12 19:17:10.376 13893 13893 D TooLargeTool: * com.google.firebase.analytics.screen_service = 0.2 KB
Is there something I'm missing?