Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9b8b5330 authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Update SilkFX to track targetSdk change" into main

parents 4b4b620a 9fd2770b
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -23,12 +23,13 @@
    <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" />

    <application android:label="SilkFX"
         android:theme="@android:style/Theme.Material">
         android:theme="@style/Theme.UsefulDefault">

        <activity android:name=".Main"
             android:label="SilkFX Demos"
             android:banner="@drawable/background1"
             android:exported="true">
             android:exported="true"
             android:theme="@style/Theme.UsefulDefault">
            <intent-filter>
                <action android:name="android.intent.action.MAIN"/>
                <category android:name="android.intent.category.DEFAULT"/>
+5 −0
Original line number Diff line number Diff line
@@ -23,9 +23,14 @@
        <item name="android:windowElevation">0dp</item>
        <item name="buttonStyle">@style/AppTheme.Button</item>
        <item name="colorAccent">#bbffffff</item>
        <item name="android:windowOptOutEdgeToEdgeEnforcement">true</item>
    </style>
    <style name="AppTheme.Button" parent="Widget.AppCompat.Button">
        <item name="android:textColor">#ffffffff</item>
    </style>

    <style name="Theme.UsefulDefault" parent="android:Theme.Material">
        <item name="android:windowOptOutEdgeToEdgeEnforcement">true</item>
    </style>

</resources>