diff options
| author | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | 2019-12-14 00:24:08 +0000 |
|---|---|---|
| committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | 2019-12-14 00:24:08 +0000 |
| commit | 619bf038e3c590764e49ab50d8ffd90bc9b9cc72 (patch) | |
| tree | ef292133514f6dd28114463b972d0802249272e0 /core/java/android | |
| parent | 8de71eb12c9d105fb452fe89f38a58e8516c9896 (diff) | |
| parent | 848155a0fb9e6d13f108424a7784311ba89620a8 (diff) | |
Merge "Remove "import JobService" to remove build time dependency" am: ac335868bf am: 848155a0fb
Change-Id: Icff1d6211fbbe2a511aac937a6765a678419ebed
Diffstat (limited to 'core/java/android')
| -rw-r--r-- | core/java/android/provider/Telephony.java | 27 |
1 files changed, 16 insertions, 11 deletions
diff --git a/core/java/android/provider/Telephony.java b/core/java/android/provider/Telephony.java index 8a3d79c2eb31..1858ddc7f452 100644 --- a/core/java/android/provider/Telephony.java +++ b/core/java/android/provider/Telephony.java @@ -25,7 +25,6 @@ import android.annotation.SdkConstant.SdkConstantType; import android.annotation.SystemApi; import android.annotation.TestApi; import android.annotation.UnsupportedAppUsage; -import android.app.job.JobService; import android.content.ComponentName; import android.content.ContentResolver; import android.content.ContentValues; @@ -4380,9 +4379,11 @@ public final class Telephony { * ServiceState provider. * <p> * Use this {@link Uri} with a {@link ContentObserver} to be notified of changes to the - * {@link ServiceState} while your app is running. You can also use a {@link JobService} to + * {@link ServiceState} while your app is running. + * You can also use a {@link android.app.job.JobService} to * ensure your app is notified of changes to the {@link Uri} even when it is not running. - * Note, however, that using a {@link JobService} does not guarantee timely delivery of + * Note, however, that using a {@link android.app.job.JobService} + * does not guarantee timely delivery of * updates to the {@link Uri}. * * @param subscriptionId the subscriptionId to receive updates on @@ -4399,9 +4400,11 @@ public final class Telephony { * ServiceState provider. * <p> * Use this {@link Uri} with a {@link ContentObserver} to be notified of changes to the - * {@link ServiceState} while your app is running. You can also use a {@link JobService} to + * {@link ServiceState} while your app is running. You can also use a + * {@link android.app.job.JobService} to * ensure your app is notified of changes to the {@link Uri} even when it is not running. - * Note, however, that using a {@link JobService} does not guarantee timely delivery of + * Note, however, that using a {@link android.app.job.JobService} + * does not guarantee timely delivery of * updates to the {@link Uri}. * * @param subscriptionId the subscriptionId to receive updates on @@ -4655,10 +4658,11 @@ public final class Telephony { * <p> * Use this {@link Uri} with a {@link ContentObserver} to be notified of changes to the * carrier identity {@link TelephonyManager#getSimCarrierId()} - * while your app is running. You can also use a {@link JobService} to ensure your app + * while your app is running. You can also use a {@link android.app.job.JobService} + * to ensure your app * is notified of changes to the {@link Uri} even when it is not running. - * Note, however, that using a {@link JobService} does not guarantee timely delivery of - * updates to the {@link Uri}. + * Note, however, that using a {@link android.app.job.JobService} does not guarantee + * timely delivery of updates to the {@link Uri}. * * @param subscriptionId the subscriptionId to receive updates on * @return the Uri used to observe carrier identity changes @@ -4676,10 +4680,11 @@ public final class Telephony { * <p> * Use this {@link Uri} with a {@link ContentObserver} to be notified of changes to the * specific carrier identity {@link TelephonyManager#getSimSpecificCarrierId()} - * while your app is running. You can also use a {@link JobService} to ensure your app + * while your app is running. You can also use a {@link android.app.job.JobService} + * to ensure your app * is notified of changes to the {@link Uri} even when it is not running. - * Note, however, that using a {@link JobService} does not guarantee timely delivery of - * updates to the {@link Uri}. + * Note, however, that using a {@link android.app.job.JobService} does not guarantee timely + * delivery of updates to the {@link Uri}. * * @param subscriptionId the subscriptionId to receive updates on * @return the Uri used to observe specific carrier identity changes |
