feat: Add Kotlin KAPT plugin and update dependencies in build.gradle.kts
chore: Update clean task to use layout.buildDirectory in top-level build.gradle.kts chore: Add VS Code settings and tasks for improved development experience docs: Create DEVELOPMENT.md with setup instructions and available commands
This commit is contained in:
34
.vscode/tasks.json
vendored
Normal file
34
.vscode/tasks.json
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
{
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "Build Debug APK",
|
||||
"type": "shell",
|
||||
"command": "./gradlew assembleDebug",
|
||||
"problemMatcher": [],
|
||||
"group": {
|
||||
"kind": "build",
|
||||
"isDefault": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "Clean Project",
|
||||
"type": "shell",
|
||||
"command": "./gradlew clean",
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "Build Release APK",
|
||||
"type": "shell",
|
||||
"command": "./gradlew assembleRelease",
|
||||
"problemMatcher": [],
|
||||
"group": "build"
|
||||
},
|
||||
{
|
||||
"label": "Install Debug APK",
|
||||
"type": "shell",
|
||||
"command": "./gradlew installDebug",
|
||||
"problemMatcher": []
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user