Android it's required with themes.xml as below:
<style name="Theme.App.SplashScreen" parent="Theme.SplashScreen.IconBackground">
@color/cdv_splashscreen_background
@drawable/ic_cdv_splashscreen
200
@style/Theme.AppCompat.NoActionBar
</style>
but during platform adding it's over write:
<style name="MyTheme" parent="android:Theme.Holo.Light">
</style>
Cordova-android it's throws the errors
Cannot read properties of null (reading 'find')
TypeError: Cannot read properties of null (reading 'find')
node_modules\cordova-android\lib\prepare.js:387:49
at Array.forEach ().
so, How can we fix it? i hope you share it. thank you
Android it's required with themes.xml as below:
<style name="Theme.App.SplashScreen" parent="Theme.SplashScreen.IconBackground"> @color/cdv_splashscreen_background @drawable/ic_cdv_splashscreen 200 @style/Theme.AppCompat.NoActionBar </style> but during platform adding it's over write: <style name="MyTheme" parent="android:Theme.Holo.Light"> </style>Cordova-android it's throws the errors
Cannot read properties of null (reading 'find')
TypeError: Cannot read properties of null (reading 'find')
node_modules\cordova-android\lib\prepare.js:387:49
at Array.forEach ().
so, How can we fix it? i hope you share it. thank you