mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2026-07-31 07:44:24 +02:00
chore: add codium/vscode devcontainer
This commit is contained in:
committed by
Arjan Schrijver
parent
968f9405d6
commit
edae741b26
Vendored
+6
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"recommendations": [
|
||||
"adelphes.android-dev-ext",
|
||||
"vscjava.vscode-java-pack"
|
||||
]
|
||||
}
|
||||
Vendored
+37
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"launch": {
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"type": "android",
|
||||
"request": "launch",
|
||||
"name": "Launch App",
|
||||
"appSrcRoot": "${workspaceRoot}/app/src/main",
|
||||
"apkFile": "${workspaceRoot}/app/build/outputs/apk/mainline/debug/app-mainline-debug.apk",
|
||||
"adbSocket": "localhost:5037",
|
||||
"autoStartADB": true,
|
||||
"staleBuild": "warn",
|
||||
"targetDevice": "${command:PickAndroidDevice}",
|
||||
"manifestFile": "${workspaceRoot}/app/src/main/AndroidManifest.xml",
|
||||
"pmInstallArgs": [
|
||||
"-r"
|
||||
],
|
||||
"amStartArgs": [
|
||||
"-D",
|
||||
"--activity-brought-to-front",
|
||||
"-a android.intent.action.MAIN",
|
||||
"-c android.intent.category.LAUNCHER",
|
||||
"-n nodomain.freeyourgadget.gadgetbridge/nodomain.freeyourgadget.gadgetbridge.activities.ControlCenterv2"
|
||||
],
|
||||
"postLaunchPause": 10000,
|
||||
"trace": true
|
||||
}
|
||||
],
|
||||
"compounds": []
|
||||
},
|
||||
"java.jdt.ls.androidSupport.enabled": "on",
|
||||
// -- Auto format code with a provided rule set:
|
||||
// "editor.formatOnSave": true,
|
||||
// "java.format.settings.url": "https://raw.githubusercontent.com/android/platform_development/master/ide/eclipse/android-formatting.xml",
|
||||
// "java.format.enabled": true
|
||||
}
|
||||
Reference in New Issue
Block a user