You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if ("$System.env.JAVA_HOME"==""||"$System.env.JAVA_HOME"=="null") {
32
-
thrownewGradleException("Set JAVA_HOME to point to the correct Jdk location\n");
32
+
thrownewGradleException("Set JAVA_HOME to point to the correct Jdk location\n")
33
33
}
34
34
35
35
if ("$System.env.ANDROID_HOME"==""||"$System.env.ANDROID_HOME"=="null") {
36
-
thrownewGradleException("Set ANDROID_HOME to point to the correct Android SDK location\n");
36
+
thrownewGradleException("Set ANDROID_HOME to point to the correct Android SDK location\n")
37
37
}
38
38
39
39
if ("$System.env.GIT_COMMIT"=="null"&&!project.hasProperty("gitCommitVersion")) {
40
-
logger.warn("Warning: The GIT_COMMIT is not set. This NativeScript Android Runtime will not be tagged with the git commit it is build from\n");
40
+
logger.warn("Warning: The GIT_COMMIT is not set. This NativeScript Android Runtime will not be tagged with the git commit it is build from\n")
41
41
}
42
42
43
43
if (project.hasProperty("metadataGen") &&!file("../android-metadata-generator/dist/tns-android-metadata-generator-0.0.1.tgz").exists()) {
44
-
thrownewGradleException("android-metadata-generator build output not found and no metadataGen option specified. Build android-metadata-generator first.\n");
44
+
thrownewGradleException("android-metadata-generator build output not found and no metadataGen option specified. Build android-metadata-generator first.\n")
0 commit comments