blob: 1715f498be1efa4a10891eb4dc088699ddab829a [file] [log] [blame]
Anton Hansson7d6704e2020-02-07 14:04:15 +00001/*
2 * Copyright (C) 2020 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.os.ext.test;
18
19import android.annotation.SystemApi;
20
21/**
22 * This class exists temporarily to verify SDK updates are working properly.
23 * @deprecated Do not use.
24 */
25@Deprecated
26public class Test {
27
28 public Test() { }
29
30 /** @hide */
31 public void testA() {}
32
33 /** @hide */
34 public void testB() {}
35
36 /** @hide */
37 public void testC() {}
38
39 /** @hide */
40 @SystemApi(client = SystemApi.Client.MODULE_LIBRARIES)
41 public void testD() {}
42
43 public void testE() {}
44
45 /** @hide */
46 @SystemApi
47 public void testF() {}
48
49 /** @hide */
50 @SystemApi
51 public void testG() {}
52
53}