Ionic time select fails to display AM / PM for Android

Works for iOS, but fails in Android with replacing AM / PM with …

Here’s the code that works for iOS

<ion-datetime  #datePicker
		text-center
		(ionChange)="dateChanged($event)"
  displayFormat="hh:mm A" 
  minuteValues="0,10,20,30,40,50"
  [(ngModel)]="time"
  (ionCancel)="navCtrl.pop()"
  >

on iOS the above code allows the user to scroll through and select either AM / PM