Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

can't stop at breakpoint in Android code #919

Open
skybrian opened this issue Apr 18, 2017 · 4 comments
Open

can't stop at breakpoint in Android code #919

skybrian opened this issue Apr 18, 2017 · 4 comments

Comments

@skybrian
Copy link
Contributor

skybrian commented Apr 18, 2017

Setting a breakpoint in Java code and running the Flutter app in debug mode will not stop at the breakpoint.

To reproduce:

  • create a new Flutter app

  • Add code to _MyHomePageState in main.dart to call a platform method when you click:

  static const platform = const PlatformMethodChannel('click/hello');
      _counter++;
      platform.invokeMethod("hello");
  • Add code to Java that logs the method:

In MainActivity:

    private static final String CHANNEL = "click2/hello";

At the end of onCreate:

        new FlutterMethodChannel(getFlutterView(), CHANNEL).setMethodCallHandler(
                new FlutterMethodChannel.MethodCallHandler() {
                    @Override
                    public void onMethodCall(MethodCall call, FlutterMethodChannel.Response response) {
                        Log.i("click", "method called: " + call.method);
                    }
                });

Start the app in the debugger. You can set a breakpoint in Dart code but not in Java code. (But, if you log a message, it does show up in the console.)

@skybrian
Copy link
Contributor Author

I'm not sure how we'd implement this, since it's not an Observatory thing. But it seems like users will want it.

@devoncarew devoncarew added this to the Backlog milestone May 26, 2017
@cal-pratt
Copy link

Is this still a thing? Not being able to break in the native code makes life pretty tough.

@jacob314
Copy link
Contributor

jacob314 commented Mar 8, 2019

@stevemessick I think you may have fixed this case.

@agentsim
Copy link

I haven't been able to put a breakpoint in native code when running flutter on the desktop, so I don't think this is fixed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

5 participants