> Can I specify to send the request to alpha mobile module?
> Or will it always send it to the default version (set in the dashboard)?
It seems that you cannot specify target version in dispatch.yaml,
but it is not always to be dispatched to "default" version.
From my experiences, GAE will dispatch to same version of module if
available. If same version doesn't exist, it dispatch to default
version.
With your dispatch.yaml.
If you have the "alpha" version in both "default" and "mobile" modules,
it will dispatch
http://alpha.yourapp.appspot.com/mobile/* to "alpha"
version of "mobile" module.
If you have "beta" version of "default" module, but not for "mobile" module,
it will dispatch
http://beta.yourapp.appspot.com/mobile/* to "default"
version of "mobile" module.
I think it try to dispatch to "beta", but not found, then use
"default" version as failsafe.
e.g. Even without dispatch.yml,
http://version-or-module-that-not-exists.yourapp.appspot.com/ will be
dispatched to default version of default module.