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"); } }); }