@loloof64 I would recommend you to use Crosswalk if you need to support Android version older than 4.4, check out the following topic for more details:
Hi
I have created an app using ionic2. There I have radio button and some .scss. Style of radio is not working well and in another app select menu is not working
but working very well in lollypop. Does anybody have any idea ??
below r details
quiz.html
<ion-list *ngFor="#q of qus" radio-group [ngClass]="{view: q.show}">
<ion-list-header>
{{q.ask}}
</ion-list-header>
<ion-item *ngFor="#opt of q.options" [ngClass]="{incorrect: opt == q.given, correct: q.ans == opt}">
…