aboutsummaryrefslogtreecommitdiff
path: root/src/com/android/tradefed/targetprep/SetPackagesRecentlyUsed.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/tradefed/targetprep/SetPackagesRecentlyUsed.java')
-rw-r--r--src/com/android/tradefed/targetprep/SetPackagesRecentlyUsed.java18
1 files changed, 17 insertions, 1 deletions
diff --git a/src/com/android/tradefed/targetprep/SetPackagesRecentlyUsed.java b/src/com/android/tradefed/targetprep/SetPackagesRecentlyUsed.java
index 90986b9..d3d3b98 100644
--- a/src/com/android/tradefed/targetprep/SetPackagesRecentlyUsed.java
+++ b/src/com/android/tradefed/targetprep/SetPackagesRecentlyUsed.java
@@ -1,8 +1,23 @@
-// Copyright 2017 Google Inc. All Rights Reserved.
+/*
+ * Copyright (C) 2017 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
package com.android.tradefed.targetprep;
import com.android.tradefed.build.IBuildInfo;
import com.android.tradefed.config.Option;
+import com.android.tradefed.config.OptionClass;
import com.android.tradefed.device.DeviceNotAvailableException;
import com.android.tradefed.device.ITestDevice;
@@ -15,6 +30,7 @@ import java.util.concurrent.TimeUnit;
* Reads the list of packages on the phone and sets all packages to be 'last used' 24 hrs ago.
* Writes to /data/system/package-usage.list and deletes it at teardown.
*/
+@OptionClass(alias = "set-packages-recently-used")
public class SetPackagesRecentlyUsed extends BaseTargetPreparer implements ITargetCleaner {
private static final String LINE_PREFIX = "package:";