diff --git a/langserver/server.js b/langserver/server.js index f08a3e3..3b751ab 100644 --- a/langserver/server.js +++ b/langserver/server.js @@ -350,7 +350,7 @@ connection.onInitialized(async () => { }); /** - * Called during initialization and whenver the App Root setting is changed to scan + * Called during initialization and whenver the App Source Root setting is changed to scan * for source files * @param {string} src_folder absolute path to the source root */ @@ -435,7 +435,7 @@ async function loadWorkingFileList(src_folder) { timeEnd('source file search'); if (!files.find(file => /^androidmanifest.xml$/i.test(file.relfpn))) { - console.log(`Warning: No AndroidManifest.xml found in app root folder. Check the Android App Root value in your workspace settings.`) + console.log(`Warning: No AndroidManifest.xml found in app root folder. Check the Android App Source Root value in your workspace settings.`) } return files; diff --git a/package.json b/package.json index 00b7377..570d759 100644 --- a/package.json +++ b/package.json @@ -37,7 +37,7 @@ "scope": "resource", "type": "string", "default": "app/src/main", - "description": "Relative path to the app source files. This folder should contain AndroidManifest.xml." + "description": "Workspace-relative path to the app source files. The specified folder should contain AndroidManifest.xml." }, "android-dev-ext.subscriptionKey": { "scope": "application", @@ -48,7 +48,7 @@ "scope": "resource", "type": "boolean", "default": false, - "description": "Enable detailed trace logging." + "description": "Enable diagnostic trace logging in the extension output." } } },