Я использую плагин ng2-ionic-rating, но он выдает ошибку, когда я строю свой apk, используя
ионная кордова билд андроид - prod
ошибка показана ниже
'rating' is not a known element: 1. If 'rating' is an Angular component,
then verify that it is part of this
module. 2. To allow any element add 'NO_ERRORS_SCHEMA' to the
'@NgModule.schemas' of this component. ("
<ion-card padding> <h1>Rate this App</h1> [ERROR ->]<rating
[(ngModel)]="rate" max="5"
emptyStarIconName="star-outline" halfStarIconName="star-half" ")
HTML-код
<ion-header>
<ion-navbar>
<ion-title>
Ionic Blank
</ion-title>
</ion-navbar>
</ion-header>
<ion-content>
<ion-card padding>
<h1>Rate this App</h1>
<rating [(ngModel)]="rate" max="5" emptyStarIconName="star-outline"
halfStarIconName="star-half" starIconName="star" nullable="false"
(ngModelChange)="onModelChange($event)">
</rating>
<ion-input [(ngModel)]="reason" placeholder="Please Give your reason">
</ion-input>
<button ion-button small round
(click)="resolveRec()">Feedback</button>
</ion-card>
</ion-content>