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

Commit d1d53403 authored by Nick Chameyev's avatar Nick Chameyev
Browse files

Do not use shared lib resources

Temporary removes usages of SysUI shared
resources as it leads to crashes in Launcher
tests.

Bug: 204727471
Test: install launcher, try autorotate suggestion
Change-Id: I82dae0b2f5a9d2cb83f8a60e3c08353dc1bb60b6
parent 33c3fc34
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -82,6 +82,8 @@

    <dimen name="navigation_key_width">128dp</dimen>

    <dimen name="navigation_key_padding">25dp</dimen>

    <!-- Keyboard shortcuts helper -->
    <dimen name="ksh_layout_width">488dp</dimen>

+6 −0
Original line number Diff line number Diff line
@@ -17,6 +17,12 @@
-->
<resources>

    <!-- The maximum width of the navigation bar ripples. -->
    <dimen name="key_button_ripple_max_width">76dp</dimen>

    <!-- The padding around the navigation buttons -->
    <dimen name="navigation_key_padding">0dp</dimen>

    <dimen name="button_size">80dp</dimen>
    <dimen name="navigation_side_padding">@dimen/button_size</dimen>
    <dimen name="navigation_key_width">@dimen/button_size</dimen>
+13 −0
Original line number Diff line number Diff line
@@ -522,6 +522,19 @@
    <!-- Size of the icon inside each item in the ringer selector drawer. -->
    <dimen name="volume_ringer_drawer_icon_size">24dp</dimen>

    <!-- The maximum width of the navigation bar ripples. -->
    <dimen name="key_button_ripple_max_width">95dp</dimen>

    <dimen name="rounded_corner_content_padding">0dp</dimen>

    <dimen name="navigation_key_padding">0dp</dimen>

    <!-- Floating rotation button -->
    <dimen name="floating_rotation_button_diameter">40dp</dimen>
    <dimen name="floating_rotation_button_min_margin">20dp</dimen>
    <dimen name="floating_rotation_button_taskbar_left_margin">20dp</dimen>
    <dimen name="floating_rotation_button_taskbar_bottom_margin">10dp</dimen>

    <!-- Gravity for the notification panel -->
    <integer name="notification_panel_layout_gravity">0x31</integer><!-- center_horizontal|top -->

+0 −3
Original line number Diff line number Diff line
@@ -45,9 +45,6 @@ android_library {
        ":wm_shell-aidls",
        ":wm_shell_util-sources",
    ],
    resource_dirs: [
        "res",
    ],
    static_libs: [
        "PluginCoreLib",
        "androidx.dynamicanimation_dynamicanimation",
Loading