You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
- Code additions to download data from Google Play Store if not on device - Changes deploy to write new meta-data - Changes to Android deploy to cache ini files once and re-read instead of the constant open/read we had - Added template/code generation system so we can now generate Java files based on a template for project dependent names etc [CL 2521147 by Robert Jones in Main branch]
25 lines
885 B
XML
25 lines
885 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<resources>
|
|
|
|
<style name="NotificationText">
|
|
<item name="android:textColor">?android:attr/textColorPrimary</item>
|
|
</style>
|
|
|
|
<style name="NotificationTextShadow" parent="NotificationText">
|
|
<item name="android:textColor">?android:attr/textColorPrimary</item>
|
|
<item name="android:shadowColor">@android:color/background_dark</item>
|
|
<item name="android:shadowDx">1.0</item>
|
|
<item name="android:shadowDy">1.0</item>
|
|
<item name="android:shadowRadius">1</item>
|
|
</style>
|
|
|
|
<style name="NotificationTitle">
|
|
<item name="android:textColor">?android:attr/textColorPrimary</item>
|
|
<item name="android:textStyle">bold</item>
|
|
</style>
|
|
|
|
<style name="ButtonBackground">
|
|
<item name="android:background">@android:color/background_dark</item>
|
|
</style>
|
|
|
|
</resources> |