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