My problem is when i deploy my ionic app on android, that smooth springy scroll effect (see .gif below) is missing. This does not occur when i serve my app locally on my development environment.
My development environment:
1.3.20 and 1.0.0-rc.3 as a bower dependency2214.101.8.0_251.9.4This .gif illustrates what i'm referring as smooth springy scroll effect:

You experiencing this because on iOS and Local-Browser the default setting for this effect is to be enabled while on Android the default is to be disabled.
To change that, add has-bouncing="true" attribute to ion-content tag
for example:
<ion-content has-bouncing="true">
...