mirror of
https://github.com/apache/cordova-android.git
synced 2025-02-01 10:32:51 +08:00
12 lines
273 B
JavaScript
12 lines
273 B
JavaScript
/*
|
|
* This is a simple routine that checks if project is an Android Studio Project
|
|
*
|
|
* @param {String} root Root folder of the project
|
|
*/
|
|
|
|
/* jshint esnext: false */
|
|
|
|
module.exports.isAndroidStudioProject = function isAndroidStudioProject (root) {
|
|
return true;
|
|
};
|