A tool for debugging TransactionTooLargeException on Android.
"Most underrated solution." - Kedar Paranjape, Jun 7 '18 at 14:26
-
Include
toolargetoolas a dependency (you can remove it again once you've debugged your crash):-
toolargetoolis available frommavenCentral() -
Add
implementation 'com.gu.android:toolargetool:0.3.0'in your module'sbuild.gradle:dependencies { ... implementation 'com.gu.android:toolargetool:0.3.0' }
-
-
Import The package
import com.gu.toolargetool.TooLargeTool; -
Add code to start logging during app start, for example in your
Application.onCreatemethod:TooLargeTool.startLogging(this); -
Monitor logcat output to see which components are writing substantial data to the transaction buffer and when:
$ adb logcat -s TooLargeToolExample logcat output (TODO: improve this example):
D/TooLargeTool: MainActivity.onSaveInstanceState wrote: Bundle@200090398 contains 1 keys and measures 0.6 KB when serialized as a Parcel * android:viewHierarchyState = 0.6 KB
Note: these instructions will only work if you have the required credentials for publishing to the com.gu Sonatype repository.
- Increase all the version number in
toolargetool/build.gradle - Make a commit and tag it with
git tag -a v<version number> -m "<message>". - Run
./gradlew publishReleasePublicationToSnapshotRepository.