aboutsummaryrefslogtreecommitdiff
path: root/common/src/com/android/tv/common/CommonConstants.java
diff options
context:
space:
mode:
Diffstat (limited to 'common/src/com/android/tv/common/CommonConstants.java')
-rw-r--r--common/src/com/android/tv/common/CommonConstants.java38
1 files changed, 0 insertions, 38 deletions
diff --git a/common/src/com/android/tv/common/CommonConstants.java b/common/src/com/android/tv/common/CommonConstants.java
index 44799f6b..ac379d18 100644
--- a/common/src/com/android/tv/common/CommonConstants.java
+++ b/common/src/com/android/tv/common/CommonConstants.java
@@ -16,51 +16,13 @@
package com.android.tv.common;
-import android.media.tv.TvInputInfo;
-
/** Constants for common use in apps and tests. */
public final class CommonConstants {
public static final String BASE_PACKAGE =
"com.android.tv";
-
/** A constant for the key of the extra data for the app linking intent. */
public static final String EXTRA_APP_LINK_CHANNEL_URI = "app_link_channel_uri";
- /**
- * An intent action to launch setup activity of a TV input. The intent should include TV input
- * ID in the value of {@link #EXTRA_INPUT_ID}. Optionally, given the value of {@link
- * #EXTRA_ACTIVITY_AFTER_COMPLETION}, the activity will be launched after the setup activity
- * successfully finishes.
- */
- public static final String INTENT_ACTION_INPUT_SETUP =
- "com.android.tv.action.LAUNCH_INPUT_SETUP";
-
- /**
- * A constant of the key to indicate a TV input ID for the intent action {@link
- * #INTENT_ACTION_INPUT_SETUP}.
- *
- * <p>Value type: String
- */
- public static final String EXTRA_INPUT_ID = TvInputInfo.EXTRA_INPUT_ID;
-
- /**
- * A constant of the key for intent to launch actual TV input setup activity used with {@link
- * #INTENT_ACTION_INPUT_SETUP}.
- *
- * <p>Value type: Intent (Parcelable)
- */
- public static final String EXTRA_SETUP_INTENT =
- CommonConstants.BASE_PACKAGE + ".extra.SETUP_INTENT";
-
- /**
- * A constant of the key to indicate an Activity launch intent for the intent action {@link
- * #INTENT_ACTION_INPUT_SETUP}.
- *
- * <p>Value type: Intent (Parcelable)
- */
- public static final String EXTRA_ACTIVITY_AFTER_COMPLETION =
- CommonConstants.BASE_PACKAGE + ".intent.extra.ACTIVITY_AFTER_COMPLETION";
-
private CommonConstants() {}
}