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

Commit f2e281d6 authored by android-build-team Robot's avatar android-build-team Robot
Browse files

Snap for 7460608 from bea7265c to sc-release

Change-Id: Ib45085a64077ee3ec2e17c5de589f6b55e9c7abe
parents 18c28cf2 bea7265c
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -64,8 +64,6 @@ android_app {
        ":ThemePicker_srcs",
        "src_override/**/*.java",
        "src_override/**/*.kt",
        "src_overridecustom/**/*.java",
        "src_overridecustom/**/*.kt",
    ],

    use_embedded_native_libs: true,
+16 −8
Original line number Diff line number Diff line
@@ -9,6 +9,8 @@
    <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS"/>
    <uses-permission android:name="android.permission.SET_WALLPAPER_COMPONENT" />

    <uses-permission android:name="android.permission.MODIFY_DAY_NIGHT_MODE" />

    <queries>
        <!-- Specific intents Wallpaper picker query for -->
        <!-- Intent filter with action SET_WALLPAPER -->
@@ -46,17 +48,23 @@
        android:name="com.android.customization.picker.CustomizationPickerApplication"
        android:theme="@style/CustomizationTheme">
        <activity
            android:name="com.android.customization.picker.CustomizationPickerActivity"
            android:name="com.android.wallpaper.picker.CustomizationPickerActivity"
            android:label="@string/app_name"
            android:resizeableActivity="false"
            android:exported="true"
            android:theme="@style/CustomizationTheme.NoActionBar">
            android:theme="@style/CustomizationTheme.NoActionBar"
            android:exported="false"/>

        <activity-alias
            android:name="com.android.customization.picker.CustomizationPickerActivity"
            android:targetActivity="com.android.wallpaper.picker.CustomizationPickerActivity"
            android:label="@string/app_name"
            android:exported="true">
             <intent-filter>
                 <action android:name="android.intent.action.SET_WALLPAPER"/>

                 <category android:name="android.intent.category.DEFAULT"/>
             </intent-filter>
        </activity>
        </activity-alias>

        <activity android:name="com.android.customization.picker.theme.CustomThemeActivity"
                  android:resizeableActivity="false"
                  android:theme="@style/CustomizationTheme.NoActionBar"/>
+0 −41
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
     Copyright (C) 2018 The Android Open Source Project

     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
     You may obtain a copy of the License at

          http://www.apache.org/licenses/LICENSE-2.0

     Unless required by applicable law or agreed to in writing, software
     distributed under the License is distributed on an "AS IS" BASIS,
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     See the License for the specific language governing permissions and
     limitations under the License.
-->
<FrameLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <FrameLayout
        android:id="@+id/fragment_container"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_marginBottom="@dimen/bottom_actions_height"/>

    <com.google.android.material.bottomnavigation.BottomNavigationView
        android:id="@+id/main_bottom_nav"
        style="@style/BottomNavStyle"
        android:layout_width="match_parent"
        android:layout_height="@dimen/bottom_actions_height"
        android:layout_gravity="bottom"
        app:labelVisibilityMode="labeled"
        app:menu="@menu/bottom_navigation_menu"/>

    <include layout="@layout/bottom_action_bar" />

</FrameLayout>
+4 −0
Original line number Diff line number Diff line
@@ -78,4 +78,8 @@
    <string name="accessibility_custom_color_title" msgid="4124246598886320663">"Gepasmaakte kleur"</string>
    <string name="accessibility_custom_shape_title" msgid="7708408259374643129">"Gepasmaakte vorm"</string>
    <string name="accessibility_custom_name_title" msgid="5494460518085463262">"Gepasmaakte stylnaam"</string>
    <string name="mode_title" msgid="2394873501427436055">"Donkertema"</string>
    <string name="mode_disabled_msg" msgid="9196245518435936512">"Tydelik gedeaktiveer vanweë Batterybespaarder"</string>
    <string name="themed_icon_title" msgid="7312460430471956558">"Tema-ikone"</string>
    <string name="gird_picker_entry_content_description" msgid="9087651470212293439">"Verander programrooster"</string>
</resources>
+4 −0
Original line number Diff line number Diff line
@@ -78,4 +78,8 @@
    <string name="accessibility_custom_color_title" msgid="4124246598886320663">"ብጁ ቀለም"</string>
    <string name="accessibility_custom_shape_title" msgid="7708408259374643129">"ብጁ ቅርጽ"</string>
    <string name="accessibility_custom_name_title" msgid="5494460518085463262">"ብጁ የቅጥ ስም"</string>
    <string name="mode_title" msgid="2394873501427436055">"ጠቆር ያለ ገጽታ"</string>
    <string name="mode_disabled_msg" msgid="9196245518435936512">"በባትሪ ኃይል ቆጣቢ ምክንያት ለጊዜው ተሰናክሏል"</string>
    <string name="themed_icon_title" msgid="7312460430471956558">"ገጽታ ያላቸው አዶዎች"</string>
    <string name="gird_picker_entry_content_description" msgid="9087651470212293439">"የመተግበሪያ ፍርግርግን ይቀይሩ"</string>
</resources>
Loading