description updates

This commit is contained in:
Dave Holoway
2020-06-28 21:24:05 +01:00
parent bb1a326768
commit c8311ea2e4
2 changed files with 4 additions and 4 deletions

View File

@@ -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 * for source files
* @param {string} src_folder absolute path to the source root * @param {string} src_folder absolute path to the source root
*/ */
@@ -435,7 +435,7 @@ async function loadWorkingFileList(src_folder) {
timeEnd('source file search'); timeEnd('source file search');
if (!files.find(file => /^androidmanifest.xml$/i.test(file.relfpn))) { 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; return files;

View File

@@ -37,7 +37,7 @@
"scope": "resource", "scope": "resource",
"type": "string", "type": "string",
"default": "app/src/main", "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": { "android-dev-ext.subscriptionKey": {
"scope": "application", "scope": "application",
@@ -48,7 +48,7 @@
"scope": "resource", "scope": "resource",
"type": "boolean", "type": "boolean",
"default": false, "default": false,
"description": "Enable detailed trace logging." "description": "Enable diagnostic trace logging in the extension output."
} }
} }
}, },