Please, provide the following version numbers that your issue occurs with:
CLI: 6.5.0
Cross-platform modules: 6.3.2
Plugin(s): ^1.0.0
Possible Fix:
File name: star-rantings.android.js, line number 40
emptyDrawable.setColorFilter(new color_1.Color('white').android, android.graphics.PorterDuff.Mode.SRC_ATOP);
Changed to:
emptyDrawable.setColorFilter(new color_1.Color(color).android, android.graphics.PorterDuff.Mode.SRC_ATOP);
The issue was that the color was manually set to white, I just replaced it with the parameter.
Which platform(s) does your issue occur on?
Please, provide the following version numbers that your issue occurs with:
Possible Fix: File name: star-rantings.android.js, line number 40
emptyDrawable.setColorFilter(new color_1.Color('white').android, android.graphics.PorterDuff.Mode.SRC_ATOP);
Changed to:
emptyDrawable.setColorFilter(new color_1.Color(color).android, android.graphics.PorterDuff.Mode.SRC_ATOP);
The issue was that the color was manually set to white, I just replaced it with the parameter.