blob: a607a9ff682b19e0fdbfaa9be28cbe7f9ea7e284 [file] [log] [blame]
Paul Duffin0692a562018-01-09 12:35:32 +00001/*
2 * Copyright (C) 2018 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 */
16package android.content.pm;
17
18/**
19 * A set of shared library names
20 *
21 * @hide
22 */
23public class SharedLibraryNames {
24
Ben Lin71c16d72018-12-06 18:34:51 -080025 static final String ANDROID_HIDL_BASE = "android.hidl.base-V1.0-java";
Steven Morelandf36ad622018-09-04 13:20:22 -070026
Ben Lin71c16d72018-12-06 18:34:51 -080027 static final String ANDROID_HIDL_MANAGER = "android.hidl.manager-V1.0-java";
Steven Morelandf36ad622018-09-04 13:20:22 -070028
Ben Lin71c16d72018-12-06 18:34:51 -080029 static final String ANDROID_TEST_BASE = "android.test.base";
Paul Duffina3b69212018-01-25 09:58:32 +000030
Ben Lin71c16d72018-12-06 18:34:51 -080031 static final String ANDROID_TEST_MOCK = "android.test.mock";
Paul Duffin0692a562018-01-09 12:35:32 +000032
Ben Lin71c16d72018-12-06 18:34:51 -080033 static final String ANDROID_TEST_RUNNER = "android.test.runner";
Paul Duffin0692a562018-01-09 12:35:32 +000034
Nicolas Geoffray10b07792018-10-27 13:48:54 +010035 public static final String ORG_APACHE_HTTP_LEGACY = "org.apache.http.legacy";
Paul Duffin0692a562018-01-09 12:35:32 +000036}