'This code will be applied to the manifest file during compilation.
'You do not need to modify it in most cases.
'See this link for for more information: https://www.b4x.com/forum/showthread.php?p=78136
AddManifestText(
<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="23"/>
<supports-screens android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"/>)
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")
' HIER BEGINNT DER CODE FÜR DAS MATERIAL THEME
SetApplicationAttribute("android:theme", "@style/AppTheme")
CreateResource(values, theme.xml,
<resources>
<style name="AppTheme" parent="android:Theme.Material">
<item name="android:colorPrimary">#FF5722</item>
<item name="android:colorPrimaryDark">#E64A19</item>
<item name="android:colorAccent">#795548</item>
</style>
</resources>
)
'End of default text.