From 76341a0215e6695aaf5575b0fc9da70df7d7d6cf Mon Sep 17 00:00:00 2001 From: David Vacca Date: Mon, 14 Aug 2023 09:54:54 -0700 Subject: [PATCH] Fix NoSuchMethodError when calling FbReactApplicationBaseSonarUtil.startSonarClient Summary: This diff is fixing a NoSuchMethodError when calling FbReactApplicationBaseSonarUtil.startSonarClient. This is causing catalyst Android app to not start. This was caused by D47468613, which changed the signature of the method Reviewed By: cortinico Differential Revision: D48275730 fbshipit-source-id: 4693c299dbd3b6a9ad58a1439bddd9e4bfb8bdf5 --- .../com/facebook/flipper/plugins/react/ReactFlipperPlugin.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/src/main/java/com/facebook/flipper/plugins/react/ReactFlipperPlugin.java b/android/src/main/java/com/facebook/flipper/plugins/react/ReactFlipperPlugin.java index ac75701f6..ec2fd35a5 100644 --- a/android/src/main/java/com/facebook/flipper/plugins/react/ReactFlipperPlugin.java +++ b/android/src/main/java/com/facebook/flipper/plugins/react/ReactFlipperPlugin.java @@ -10,7 +10,7 @@ package com.facebook.flipper.plugins.react; import com.facebook.flipper.core.FlipperConnection; import com.facebook.flipper.core.FlipperPlugin; -// This plugin is not needed, but kept here for backward compatilibty +// This plugin is not needed, but kept here for backward compatibility @Deprecated public class ReactFlipperPlugin implements FlipperPlugin {