Ionic app show blank screen on android device (4.4.4) after splash screen

Well after day of debugging my issue its about my variables.scss

$white: #FFFFFF;
$white-a: darken($white, 3%);
$white-b: darken($white, 6%);
$white-c: darken($white, 12%);
$white-d: darken($white, 24%);

$black: rgba(#000000, .8);
$black-a: lighten($black, 10%);
$black-b: lighten($black, 20%);
$black-c: lighten($black, 40%);
$black-d: lighten($black, 60%);

$theme-color-1: #5dc3b5;
$theme-color-2: #ae75e7;
$theme-color-3: #5e5874;

// Named Color Variables
// --------------------------------------------------
// Named colors makes it easy to reuse colors on various components.
// It’s highly recommended to change the default colors
// to match your app’s branding. Ionic uses a Sass map of
// colors so you can add, rename and remove colors as needed.
// The “primary” color is the only required color in the map.

$colors: (
primary: #387ef5,
danger: #f53d3d,
light: #f4f4f4,
favorite: #69bb7b,
gray: #898989,
stranger : #5dc3b5,
violet: #ae75e7,
orange : #e9a86b,
dark: #222, -----> if I commented this variable or one of the value its work 100%
if i add one more variable like dark or secondary white screen appear on android 4.4.4 when im using ionic run android --prod

walkthrough:(
base: $theme-color-1,
contrast: $white
),
walkthrough-alt:(
base: $theme-color-2,
contrast: $white
),
walkthrough-header:(
base: transparent,
contrast: $white
),
header:(
base: $theme-color-1,
contrast: $white
),
header-alt:(
base: $theme-color-2,
contrast: $white
),
facebook:(
base: #3b5998,
contrast: $white
),
google:(
base: #cc181e,
contrast: $white
),
button:(
base: $theme-color-1,
contrast: $white
),
button-alt:(
base: $theme-color-2,
contrast: $white
),
button-alt2:(
base: $white,
contrast:$theme-color-1
),

background:(
base: $white-a,
contrast: $black-b
),
tabs-navigation:(
base: $white,
contrast: $white-d
)

);

4 Likes