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

Commit a024ce0f authored by Android Build Coastguard Worker's avatar Android Build Coastguard Worker
Browse files

Snap for 12078078 from b2596e82 to 24Q4-release

Change-Id: I84d14480c0c72410a32497fe682c6e5182ce8012
parents c4d4c225 b2596e82
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -368,8 +368,6 @@ stubs_defaults {
        "--hide CallbackInterface",
        // Disable HiddenSuperclass, as Metalava handles this fine (it should be hidden by default)
        "--hide HiddenSuperclass",
        "--hide-package android.audio.policy.configuration.V7_0",
        "--hide-package com.android.server",
        "--manifest $(location :frameworks-base-core-AndroidManifest.xml)",
    ],
    filter_packages: packages_to_document,
+6 −3
Original line number Diff line number Diff line
@@ -1058,7 +1058,7 @@ package android {
    field public static final int label = 16842753; // 0x1010001
    field public static final int labelFor = 16843718; // 0x10103c6
    field @Deprecated public static final int labelTextSize = 16843317; // 0x1010235
    field @FlaggedApi("android.view.inputmethod.ime_switcher_revamp") public static final int languageSettingsActivity;
    field @FlaggedApi("android.view.inputmethod.ime_switcher_revamp_api") public static final int languageSettingsActivity;
    field public static final int languageTag = 16844040; // 0x1010508
    field public static final int largeHeap = 16843610; // 0x101035a
    field public static final int largeScreens = 16843398; // 0x1010286
@@ -6844,6 +6844,9 @@ package android.app {
    method public android.app.Notification.MessagingStyle.Message setData(String, android.net.Uri);
  }
  @FlaggedApi("android.app.api_rich_ongoing") public abstract static class Notification.RichOngoingStyle extends android.app.Notification.Style {
  }
  public abstract static class Notification.Style {
    ctor @Deprecated public Notification.Style();
    method public android.app.Notification build();
@@ -56333,7 +56336,7 @@ package android.view.inputmethod {
  public final class InputMethodInfo implements android.os.Parcelable {
    ctor public InputMethodInfo(android.content.Context, android.content.pm.ResolveInfo) throws java.io.IOException, org.xmlpull.v1.XmlPullParserException;
    ctor public InputMethodInfo(String, String, CharSequence, String);
    method @FlaggedApi("android.view.inputmethod.ime_switcher_revamp") @Nullable public android.content.Intent createImeLanguageSettingsActivityIntent();
    method @FlaggedApi("android.view.inputmethod.ime_switcher_revamp_api") @Nullable public android.content.Intent createImeLanguageSettingsActivityIntent();
    method @Nullable public android.content.Intent createStylusHandwritingSettingsActivityIntent();
    method public int describeContents();
    method public void dump(android.util.Printer, String);
@@ -56354,7 +56357,7 @@ package android.view.inputmethod {
    method public boolean supportsStylusHandwriting();
    method public boolean suppressesSpellChecker();
    method public void writeToParcel(android.os.Parcel, int);
    field @FlaggedApi("android.view.inputmethod.ime_switcher_revamp") public static final String ACTION_IME_LANGUAGE_SETTINGS = "android.view.inputmethod.action.IME_LANGUAGE_SETTINGS";
    field @FlaggedApi("android.view.inputmethod.ime_switcher_revamp_api") public static final String ACTION_IME_LANGUAGE_SETTINGS = "android.view.inputmethod.action.IME_LANGUAGE_SETTINGS";
    field public static final String ACTION_STYLUS_HANDWRITING_SETTINGS = "android.view.inputmethod.action.STYLUS_HANDWRITING_SETTINGS";
    field @NonNull public static final android.os.Parcelable.Creator<android.view.inputmethod.InputMethodInfo> CREATOR;
  }
+12 −0
Original line number Diff line number Diff line
@@ -10978,6 +10978,18 @@ public class Notification implements Parcelable
        }
    }
    /**
     * An object that can apply a rich ongoing notification style to a {@link Notification.Builder}
     * object.
     */
    @FlaggedApi(Flags.FLAG_API_RICH_ONGOING)
    public abstract static class RichOngoingStyle extends Notification.Style {
        /**
         * @hide
         */
        public RichOngoingStyle() {}
    }
    /**
     * Notification style for custom views that are decorated by the system
     *
+23 −0
Original line number Diff line number Diff line
/*
 * Copyright (C) 2024 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.
 */

/**
 * Hide the android.audio.policy.configuration.V7_0 API as that is managed
 * separately.
 *
 * @hide
 */
package android.audio.policy.configuration.V7_0;
+7 −0
Original line number Diff line number Diff line
@@ -31,6 +31,13 @@ flag {
     is_fixed_read_only: true
}

flag {
     namespace: "virtual_devices"
     name: "media_projection_keyguard_restrictions"
     description: "Auto-stop MP when the device locks"
     bug: "348335290"
}

flag {
    namespace: "virtual_devices"
    name: "virtual_display_insets"
Loading