Settings and activity
7 results found
-
93 votesBdodroid supported this idea ·
-
185 votesBdodroid supported this idea ·
-
234 votes
As many of you may have seen from our I/O Connect announcements, we are actively working on having Android Studio work on IDX. Here is a teaser video: https://x.com/kirupa/status/1813693281039212735
Please join the waitlist to be among the first to try out this experience once we make it available for early testing: https://idx.google.com/android-studio
Bdodroid supported this idea · -
137 votesBdodroid supported this idea ·
-
6 votesBdodroid supported this idea ·
-
3 votes
An error occurred while saving the comment Bdodroid shared this idea · -
81 votes
We have released a preview version of our Java support for you all to try out! :-)
https://community.idx.dev/t/check-out-our-new-backend-focused-templates/746
Feel free to reply in the forums itself with your feedback.
Bdodroid supported this idea ·
Looks like it's pretty easy to add to a blank project, just got to tweak the dev.nix and launch.json files.
dev.nix:
{ pkgs, ... }: {
channel = "stable-23.11"; # or "unstable"
packages = [
pkgs.deno
];
env = {};
idx = {
extensions = [
"denoland.vscode-deno"
"ms-vscode.js-debug"
];
previews = {
enable = true;
previews = { };
};
workspace = {
onCreate = { };
onStart = { };
};
};
}
create a launch.json:
{
"version": "0.2.0",
"configurations": [
{
"request": "launch",
"name": "Launch Program",
"type": "node",
"program": "${workspaceFolder}/main.ts",
"cwd": "${workspaceFolder}",
"runtimeExecutable": "/usr/bin/deno",
"runtimeArgs": [
"run",
"--unstable",
"--inspect-wait",
"--allow-all"
],
"envFile": "${workspaceFolder}/.env",
"attachSimplePort": 9229
}
]
}
also, don't forget to initialize the Deno configuration:
CTRL+SHIFT+P "Deno: Initialize Workspace Configuration"
With those changes it's working pretty well, the only real issue is the Deno package in Nix is a couple versions behind.