blob: e6a9a696cfe2b9858e8c38edab183190001eea1e [file] [log] [blame]
Winson Chung55cef262010-10-28 14:14:18 -07001/*
2 * Copyright (C) 2010 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.launcher2;
18
19
20/**
21 * We will likely flesh this out later, to handle allow external apps to place widgets, but for now,
22 * we just want to expose the action around for checking elsewhere.
23 */
24public class InstallWidgetReceiver {
25 public static final String ACTION_INSTALL_WIDGET =
26 "com.android.launcher.action.INSTALL_WIDGET";
27
28 // Currently not exposed. Put into Intent when we want to make it public.
29 // TEMP: Should we call this "EXTRA_APPWIDGET_PROVIDER"?
30 public static final String EXTRA_APPWIDGET_COMPONENT =
31 "com.android.launcher.extra.widget.COMPONENT";
32 public static final String EXTRA_APPWIDGET_CONFIGURATION_DATA =
33 "com.android.launcher.extra.widget.CONFIGURATION_DATA";
34}