Create devcontainer.json

Signed-off-by: Alex Yong <alexjyong@gmail.com>
This commit is contained in:
Alex Yong 2025-07-17 13:31:36 -04:00 committed by GitHub
parent 91f18b7808
commit aa1d90dd85
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{
"image": "mcr.microsoft.com/devcontainers/universal:2",
"features": {
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
"ghcr.io/devcontainers/features/java:1": {
"version": "21",
"jdkDistro": "oracle"
},
"ghcr.io/nordcominc/devcontainer-features/android-sdk:1": {
"extra_packages": "ndk"
}
},
"postCreateCommand": "chmod +x gradlew && cp revoltbuild.properties.example revoltbuild.properties && cp sentry.properties.example sentry.properties",
"customizations": {
"vscode": {
"extensions": [
"redhat.java",
"vscjava.vscode-java-pack",
"kotlin.kotlin"
]
}
}
}