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

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

Snap for 6770235 from be05cd4b to rvc-qpr1-release

Change-Id: Iac140cf470a54d6e7b6c83df33e64877ed735a04
parents ecca4885 be05cd4b
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -35,6 +35,7 @@
        <permission name="android.permission.MANAGE_USERS"/>
        <permission name="android.permission.MASTER_CLEAR"/>
        <permission name="android.permission.MEDIA_CONTENT_CONTROL"/>
        <permission name="android.permission.MODIFY_AUDIO_ROUTING" />
        <permission name="android.permission.MODIFY_DAY_NIGHT_MODE"/>
        <permission name="android.permission.MODIFY_PHONE_STATE"/>
        <permission name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"/>
+3 −0
Original line number Diff line number Diff line
@@ -240,6 +240,8 @@
    <!-- Listen app op changes -->
    <uses-permission android:name="android.permission.WATCH_APPOPS" />
    <uses-permission android:name="android.permission.OBSERVE_GRANT_REVOKE_PERMISSIONS" />
    <!-- For handling silent audio recordings -->
    <uses-permission android:name="android.permission.MODIFY_AUDIO_ROUTING" />

    <!-- to read and change hvac values in a car -->
    <uses-permission android:name="android.car.permission.CONTROL_CAR_CLIMATE" />
@@ -267,6 +269,7 @@
    <!-- Permission to make accessibility service access Bubbles -->
    <uses-permission android:name="android.permission.ADD_TRUSTED_DISPLAY" />


    <protected-broadcast android:name="com.android.settingslib.action.REGISTER_SLICE_RECEIVER" />
    <protected-broadcast android:name="com.android.settingslib.action.UNREGISTER_SLICE_RECEIVER" />
    <protected-broadcast android:name="com.android.settings.flashlight.action.FLASHLIGHT_CHANGED" />
+1 −0
Original line number Diff line number Diff line
@@ -32,6 +32,7 @@
        android:gravity="center">
        <ImageView
            android:id="@+id/screenshot_action_chip_icon"
            android:tint="@*android:color/accent_device_default"
            android:layout_width="@dimen/screenshot_action_chip_icon_size"
            android:layout_height="@dimen/screenshot_action_chip_icon_size"
            android:layout_marginStart="@dimen/screenshot_action_chip_padding_start"
+3 −3
Original line number Diff line number Diff line
@@ -65,10 +65,10 @@ public class ScreenshotActionChip extends FrameLayout {
    }

    void setIcon(Icon icon, boolean tint) {
        if (tint) {
            icon.setTint(mIconColor);
        }
        mIcon.setImageIcon(icon);
        if (!tint) {
            mIcon.setImageTintList(null);
        }
    }

    void setText(CharSequence text) {
+3 −3
Original line number Diff line number Diff line
@@ -37,7 +37,7 @@ public final class CellIdentityNr extends CellIdentity {
    private static final String TAG = "CellIdentityNr";

    private static final int MAX_PCI = 1007;
    private static final int MAX_TAC = 65535;
    private static final int MAX_TAC = 16777215; // 0xffffff
    private static final int MAX_NRARFCN = 3279165;
    private static final long MAX_NCI = 68719476735L;

@@ -53,7 +53,7 @@ public final class CellIdentityNr extends CellIdentity {
    /**
     *
     * @param pci Physical Cell Id in range [0, 1007].
     * @param tac 16-bit Tracking Area Code.
     * @param tac 24-bit Tracking Area Code.
     * @param nrArfcn NR Absolute Radio Frequency Channel Number, in range [0, 3279165].
     * @param bands Bands used by the cell. Band number defined in 3GPP TS 38.101-1 and TS 38.101-2.
     * @param mccStr 3-digit Mobile Country Code in string format.
@@ -199,7 +199,7 @@ public final class CellIdentityNr extends CellIdentity {

    /**
     * Get the tracking area code.
     * @return a 16 bit integer or {@link CellInfo#UNAVAILABLE} if unknown.
     * @return a 24 bit integer or {@link CellInfo#UNAVAILABLE} if unknown.
     */
    @IntRange(from = 0, to = 65535)
    public int getTac() {