blob: 2f1e90ae6930fd4865b876e2ff935d03562cc11b [file] [log] [blame]
Weicefcd891b2021-12-28 23:31:08 +00001/*
2 * Copyright (C) 2021 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.nearby.halfsheet.utils;
18
Weicefcd891b2021-12-28 23:31:08 +000019import android.content.Context;
20import android.content.Intent;
Weicefcd891b2021-12-28 23:31:08 +000021
22/**
23 * Broadcast util class
24 */
25public class BroadcastUtils {
Weicefcd891b2021-12-28 23:31:08 +000026
27 /**
28 * Helps send broadcast.
29 */
30 public static void sendBroadcast(Context context, Intent intent) {
31 context.sendBroadcast(intent);
32 }
33
Brian Delwiche45d37ba2022-08-22 21:45:34 +000034 /**
35 * Helps send a broadcast with specified receiver permission.
36 */
37 public static void sendBroadcast(Context context, Intent intent, String receiverPermission) {
38 context.sendBroadcast(intent, receiverPermission);
39 }
40
Weicefcd891b2021-12-28 23:31:08 +000041 private BroadcastUtils() {
42 }
43}