Before this change, tethering always report a list of tethered interfaces and the caller need to use each tethering type's interface regex to matching tethered list to manual implement the mapping of tethering type and interface. This change allow caller to get rid of tethering interface regex. Bug: 162920185 Bug: 152203943 Test: atest CtsTetheringTest on S Ignore-AOSP-First: Currently aosp would automerge to mainlne-prod, merge to sc-dev first to avoid adding new API to mainline-prod CTS-Coverage-Bug: I already add cts test(ag/14622456), but Lint still complaint because my cts is under packages/modules/Connectivity/ but it only check whether CL touching platform/cts Change-Id: I91bcccd676d109c1b974497ac29bd366a41b8899
65 lines
2.2 KiB
Plaintext
65 lines
2.2 KiB
Plaintext
//
|
|
// Copyright (C) 2019 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 {
|
|
default_applicable_licenses: ["Android-Apache-2.0"],
|
|
}
|
|
|
|
java_sdk_library {
|
|
name: "framework-tethering",
|
|
defaults: ["framework-module-defaults"],
|
|
impl_library_visibility: [
|
|
"//frameworks/base/packages/Tethering:__subpackages__",
|
|
"//packages/modules/Connectivity/Tethering:__subpackages__",
|
|
],
|
|
|
|
srcs: [":framework-tethering-srcs"],
|
|
libs: ["framework-connectivity.stubs.module_lib"],
|
|
stub_only_libs: ["framework-connectivity.stubs.module_lib"],
|
|
aidl: {
|
|
include_dirs: [
|
|
"frameworks/base/packages/Connectivity/framework/aidl-export",
|
|
],
|
|
},
|
|
|
|
jarjar_rules: "jarjar-rules.txt",
|
|
installable: true,
|
|
|
|
hostdex: true, // for hiddenapi check
|
|
apex_available: ["com.android.tethering"],
|
|
permitted_packages: ["android.net"],
|
|
min_sdk_version: "30",
|
|
}
|
|
|
|
filegroup {
|
|
name: "framework-tethering-srcs",
|
|
srcs: [
|
|
"src/android/net/TetheredClient.aidl",
|
|
"src/android/net/TetheredClient.java",
|
|
"src/android/net/TetheringManager.java",
|
|
"src/android/net/TetheringConstants.java",
|
|
"src/android/net/IIntResultListener.aidl",
|
|
"src/android/net/ITetheringEventCallback.aidl",
|
|
"src/android/net/ITetheringConnector.aidl",
|
|
"src/android/net/TetheringCallbackStartedParcel.aidl",
|
|
"src/android/net/TetheringConfigurationParcel.aidl",
|
|
"src/android/net/TetheringRequestParcel.aidl",
|
|
"src/android/net/TetherStatesParcel.aidl",
|
|
"src/android/net/TetheringInterface.aidl",
|
|
"src/android/net/TetheringInterface.java",
|
|
],
|
|
path: "src"
|
|
}
|