diff options
| author | 2024-01-05 02:45:57 +0000 | |
|---|---|---|
| committer | 2024-01-05 02:45:57 +0000 | |
| commit | 24e4de7be378efa08a5a769fe030cbed69a2d065 (patch) | |
| tree | 0d3ba754dd47bb1094b459f49def4ced497177e1 | |
| parent | 378b126c9dfec9d5f44db4bd0362fc4948a9aee3 (diff) | |
| parent | a349921645d7c3991cd4e4d85416df45c70fb279 (diff) | |
Merge "Fix the java docs for getDefaultSmsPackage API" into main am: 4797fc9a04 am: a349921645
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/2895529
Change-Id: I6101798f2db1ca8bdc6e7efce1717f670d410120
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
| -rw-r--r-- | core/java/android/provider/Telephony.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/java/android/provider/Telephony.java b/core/java/android/provider/Telephony.java index 59b945c9c9a4..db48bade4d28 100644 --- a/core/java/android/provider/Telephony.java +++ b/core/java/android/provider/Telephony.java @@ -366,11 +366,13 @@ public final class Telephony { * <p> * As of Android 11 apps will need specific permission to query other packages. To use * this method an app must include in their AndroidManifest: + * <pre>{@code * <queries> * <intent> * <action android:name="android.provider.Telephony.SMS_DELIVER"/> * </intent> * </queries> + * }</pre> * Which will allow them to query packages which declare intent filters that include * the {@link android.provider.Telephony.Sms.Intents#SMS_DELIVER_ACTION} intent. * </p> |