Try This:
Index.html:
<body>
<ion-pane>
<ion-nav-view>
</ion-nav-view>
</ion-pane>
Template.html
<ion-view>
<button ng-click="someFunction()">Foo</button>
<button onclick="alert('bar')">Bar</button>
</ion-view>
This works fine on Android 4.4 and above but not with 4.2 and below
What is wrong here?