Index: platform_tools/android/apps/build.gradle |
diff --git a/platform_tools/android/apps/build.gradle b/platform_tools/android/apps/build.gradle |
index 40e085cf5f25c45681d118a81f5aeef511a6e9d3..901e3295eae0f23e87a11fd8b43115a1f83cae95 100644 |
--- a/platform_tools/android/apps/build.gradle |
+++ b/platform_tools/android/apps/build.gradle |
@@ -77,8 +77,7 @@ def getPathWithDeps(requireCMake = false) { |
if (requireCMake) { |
String cmakePath = getSDKPath() + "/cmake/bin" |
if (!file(cmakePath).exists()) { |
- throw new GradleScriptException("cmake not found! Please install the android SDK version" + |
- " of cmake.", null); |
+ logger.warn("cmake not found! Please install the android SDK version of cmake."); |
} |
if (!path.contains(cmakePath)) { |
path = cmakePath + ":" + path |