Skip to content

Commit

Permalink
fix: react-native 0.77 build on Android
Browse files Browse the repository at this point in the history
  • Loading branch information
iM-GeeKy committed Jan 30, 2025
1 parent 39fa56e commit 2481500
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@
import android.view.View;
import androidx.annotation.Nullable;
import com.facebook.react.uimanager.BaseViewManagerDelegate;
import com.facebook.react.uimanager.BaseViewManagerInterface;
import com.facebook.react.uimanager.BaseViewManager;
import com.facebook.react.uimanager.LayoutShadowNode;

public class BlurhashViewManagerDelegate<T extends View, U extends BaseViewManagerInterface<T> & BlurhashViewManagerInterface<T>> extends BaseViewManagerDelegate<T, U> {
public class BlurhashViewManagerDelegate<T extends View, U extends BaseViewManager<T, ? extends LayoutShadowNode> & BlurhashViewManagerInterface<T>> extends BaseViewManagerDelegate<T, U> {
public BlurhashViewManagerDelegate(U viewManager) {
super(viewManager);
}
Expand Down

0 comments on commit 2481500

Please sign in to comment.