Kenneth
Kenneth
[Flutter also supports DAP apparently](https://github.com/flutter/flutter/blob/master/packages/flutter_tools/lib/src/debug_adapters/README.md). I will take a look at existing adapters and see what I come up with.
I don't think it's released though, because `flutter debug-adapter` doesn't work properly. I tried to run the Dart debugger in the `example/dart` folder, but I got this error:  ```...
> That exception is unrelated "Unable to restart debugging. Please try ending the debug session and starting again." is from the dart adapter so there is probably some issue with...
I pulled in the latest commit, and now it will stuck at "Starting" and will not actually start the debug session.
Thanks, I'll try that when I'm free.
Hi @daveleroy, turns out my path to the main dart file is misconfigured. Everything seems to be working fine now after I fixed the path by adding `${workspacePath}`. The only...
by settings x offset as 0, if i understand your issue correctly. `const shadowOpt = { x: 0, y: 5 };`
I wrote a simple script that generates `*.schema.d.ts` files next to their JSON schema files in `src/**/*.schema.json`: ```js const fs = require("fs") const path = require("path") const glob = require("glob")...
I can reproduce this issue when `future.v2_routeConvention` is enabled in `remix.config.js` in a fresh project before running `dev`. [Repro here](https://github.com/kennethnym/test-remix-v2).
This is currently blocked by [this issue](https://issuetracker.google.com/issues/237124750). It is no longer possible to request `READ_EXTERNAL_STORAGE` on Android 13, but `WallpaperManager.fastDrawable` still requires that permission or else it will throw.