diff options
| -rw-r--r-- | core/java/android/content/pm/PackageManager.java | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/core/java/android/content/pm/PackageManager.java b/core/java/android/content/pm/PackageManager.java index 1a6f6b87d14c..e8a355f102c3 100644 --- a/core/java/android/content/pm/PackageManager.java +++ b/core/java/android/content/pm/PackageManager.java @@ -3474,6 +3474,18 @@ public abstract class PackageManager { /** * Feature for {@link #getSystemAvailableFeatures} and {@link #hasSystemFeature}: + * The device supports Telephony APIs for Satellite communication. + * + * <p>This feature should only be defined if {@link #FEATURE_TELEPHONY_MESSAGING} + * has been defined. + * + * @hide + */ + @SdkConstant(SdkConstantType.FEATURE) + public static final String FEATURE_TELEPHONY_SATELLITE = "android.hardware.telephony.satellite"; + + /** + * Feature for {@link #getSystemAvailableFeatures} and {@link #hasSystemFeature}: * The device supports Telephony APIs for the subscription. * * <p>This feature should only be defined if {@link #FEATURE_TELEPHONY} has been defined. |