diff --git a/WordPress/build.gradle b/WordPress/build.gradle index 710331e0516..623acc40ec8 100644 --- a/WordPress/build.gradle +++ b/WordPress/build.gradle @@ -562,6 +562,9 @@ dependencies { // - Jetpack Compose - UI Tests androidTestImplementation "androidx.compose.ui:ui-test-junit4" implementation "androidx.compose.material3:material3:$androidxComposeMaterial3Version" + + // DEBUG: Only here for debugging + implementation 'com.gu.android:toolargetool:0.3.0' } configurations.all { diff --git a/WordPress/src/debug/java/org/wordpress/android/WordPressDebug.java b/WordPress/src/debug/java/org/wordpress/android/WordPressDebug.java index 18c86dd485b..4860835d252 100644 --- a/WordPress/src/debug/java/org/wordpress/android/WordPressDebug.java +++ b/WordPress/src/debug/java/org/wordpress/android/WordPressDebug.java @@ -9,6 +9,8 @@ import org.wordpress.android.util.AppLog.T; import dagger.hilt.android.HiltAndroidApp; +import com.gu.toolargetool.TooLargeTool; + @HiltAndroidApp public class WordPressDebug extends WordPressApp { @Override @@ -19,6 +21,8 @@ public class WordPressDebug extends WordPressApp { // Init Stetho Stetho.initializeWithDefaults(this); + + TooLargeTool.startLogging(this); } /**