Tweak OAuth Android warning message

This commit is contained in:
Emily Stark
2014-10-24 12:07:21 -07:00
parent 7154c9dc16
commit af875523b4

View File

@@ -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 <your site name>.meteor.com\n");
"emulator. For workarounds, please see\n" +
"https://github.com/meteor/meteor/wiki/OAuth-in-the-Android-emulator.\n");
}
});
}