вы можете сделать это, обновив стиль по умолчанию. Вы должны обновить AndroidManifest.template.xml, например,
<application android:persistent="%persistent%"
android:restoreAnyVersion="%restoreAnyVersion%"
android:label="%label%"
android:debuggable="%debuggable%"
android:largeHeap="%largeHeap%"
android:icon="%icon%"
android:theme="@style/myAppTheme"
android:hardwareAccelerated="%hardwareAccelerated%">
и затем вы должны предоставить style.xml нужную вам настройку (например, сделать строку состояния прозрачной)
пример style.xml:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="myAppTheme" parent="@android:style/Theme.Material.Light.NoActionBar">
<item name="android:windowTranslucentStatus">true</item>
<item name="android:windowTranslucentNavigation">true</item>
<item name="android:windowDrawsSystemBarBackgrounds">false</item>
<item name="android:colorPrimary">#ff2b2e38</item>
<item name="android:colorAccent">#ff0288d1</item>
<item name="android:windowBackground">@drawable/splash_screen</item>
<item name="android:statusBarColor">#ff0087b4</item>
</style>
</resources>
см. Пример демонстрационного приложения, которое переопределяет стиль по умолчанию в https://github.com/Zeus64/alcinoe (демонстрация - alfmxcontrols)