From af875523b4e2c7f77d0786c4838384da58cb8af0 Mon Sep 17 00:00:00 2001 From: Emily Stark Date: Fri, 24 Oct 2014 12:07:21 -0700 Subject: [PATCH] Tweak OAuth Android warning message --- tools/commands-cordova.js | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/tools/commands-cordova.js b/tools/commands-cordova.js index 4ae24f7372..b838367aeb 100644 --- a/tools/commands-cordova.js +++ b/tools/commands-cordova.js @@ -887,11 +887,10 @@ _.extend(CordovaRunner.prototype, { var versions = project.getVersions({ dontRunConstraintSolver: true }); if (versions.oauth) { Console.warn( -"Warning: It looks like you are using OAuth login in your app.\n" + +"\nWarning: It looks like you are using OAuth login in your app.\n" + "Meteor's OAuth implementation does not currently work in the Android\n" + -"emulator. To test OAuth login in the emulator, please deploy your app\n" + -"with 'meteor deploy' and then run:\n" + -" meteor run android --mobile-server .meteor.com\n"); +"emulator. For workarounds, please see\n" + +"https://github.com/meteor/meteor/wiki/OAuth-in-the-Android-emulator.\n"); } }); }