Skip to content

Remove check for ant version #965

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 28, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/common
Submodule common updated 2 files
+0 −2 declarations.d.ts
+1 −4 sysinfo.ts
8 changes: 0 additions & 8 deletions lib/services/doctor-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,7 @@ class DoctorService implements IDoctorService {
this.printPackageManagerTip();
result = true;
}
if (!sysInfo.antVer) {
this.$logger.warn("WARNING: Apache Ant is not installed or is not configured properly.");
this.$logger.out("You will not be able to build your projects for Android." + EOL
+ "To be able to build for Android, download and install Apache Ant and" + EOL
+ "its dependencies as described in http://ant.apache.org/manual/index.html" + EOL);

this.printPackageManagerTip();
result = true;
}
if (!sysInfo.androidInstalled) {
this.$logger.warn("WARNING: The Android SDK is not installed or is not configured properly.");
this.$logger.out("You will not be able to build your projects for Android and run them in the native emulator." + EOL
Expand Down