Meteor Js Google Login Cache Issue

In my meteorjs application built for both iOS and Android, while logging in with google on mobile or web, the first time I login, it works fine and logs me into the app, but then when I logout of the app and try to re-login with another google account, the popup does not ask me for the username and password, instead it logs me back into the previous account which I initially used. Later, when I remove the browser/app cache, it works fine again for one time only. What should I do to not maintain the cache by google login.

Accounts.loginServiceConfiguration.remove({
service: "google"

});
Accounts.loginServiceConfiguration.insert({
service: “google”,
clientId: “abdklabsldaklkahsdlk1238971289312.apps.googleusercontent.com”,
secret: “acbefghalkdglkaj”
});

so did you manage to resolve your problem…? facing same problem here.