Lines Matching full:path
35 String path = System.getenv("ANDROID_SDK_ROOT")
36 if (path == null) {
37 path = getLocalProperties().getProperty('sdk.dir', null)
40 if (path == null) {
42 " your path or define sdk.dir in gradle.properties")
44 return path
48 System.getenv("PATH") + ":" + getLocalProperties().getProperty('depot_tools.dir', null)
49 String path = System.getenv("PATH")
50 if (!path.contains("depot_tools")) {
51 path += ":" + getLocalProperties().getProperty('depot_tools.dir', null)
54 if (!path.contains("depot_tools")) {
55 throw GradleScriptException("Depot Tools not found! Please update your path to include" +
58 return path