diff options
| author | 2016-05-18 02:04:19 +0000 | |
|---|---|---|
| committer | 2016-05-18 02:04:19 +0000 | |
| commit | 5967692ce1f5b36b411dcf90995b16b2b67b01e1 (patch) | |
| tree | 2d10d95ea0ed541dd23cf2b9185c7cca97701e30 | |
| parent | 0f95b8dc3604f0ec3cb36de2c6184743099512ba (diff) | |
| parent | 473ef93497256f5c985f88b56c884dc89a72487d (diff) | |
Merge "Docs: Fixed a wrong adb command example" into mnc-io-docs
am: 473ef93497
* commit '473ef93497256f5c985f88b56c884dc89a72487d':
Docs: Fixed a wrong adb command example
Change-Id: Id44b8226104fabd0395c21e7d1fd716ade1a88d4
| -rw-r--r-- | docs/html/preview/features/background-optimization.jd | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/html/preview/features/background-optimization.jd b/docs/html/preview/features/background-optimization.jd index ec02328ad25e..3c33b9d3ff49 100644 --- a/docs/html/preview/features/background-optimization.jd +++ b/docs/html/preview/features/background-optimization.jd @@ -379,7 +379,7 @@ public boolean onStartJob(JobParameters params) { <li style="list-style: none; display: inline"> <pre class="no-pretty-print"> -{@code $ adb shell cmd appops set RUN_IN_BACKGROUND ignore} +{@code $ adb shell cmd appops set <package> RUN_IN_BACKGROUND ignore} </pre> </li> @@ -389,7 +389,7 @@ public boolean onStartJob(JobParameters params) { <li style="list-style: none; display: inline"> <pre class="no-pretty-print"> -{@code $ adb shell cmd appops set RUN_IN_BACKGROUND allow} +{@code $ adb shell cmd appops set <package> RUN_IN_BACKGROUND allow} </pre> </li> -</ul>
\ No newline at end of file +</ul> |