diff options
| author | Alex Lin <wwl@google.com> | 2019-11-05 12:52:11 -0800 |
|---|---|---|
| committer | Alex Lin <wwl@google.com> | 2020-01-17 13:59:16 -0800 |
| commit | 2fb59151dcbf83e0a1c8e45933d15f288953ba12 (patch) | |
| tree | 0b37e8537c7391c7a12a9435a4424bf76f1af489 /core/java | |
| parent | 34fb1da756e1feabd8fe041b7464c63b82311eb7 (diff) | |
Add public API for EuiccService log dump
Add public APi to EuiccService which allows the connected LPA to dump
out the logs when a bug report is triggered.
Bug: 62881779
Test: manually tested by extracting bug report to see if the logs are
present and atest EuiccServiceTest
Change-Id: I0869b95d12ab87a5e2a255015549191040d9daa7
Diffstat (limited to 'core/java')
| -rw-r--r-- | core/java/android/service/euicc/IEuiccServiceDumpResultCallback.aidl | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/core/java/android/service/euicc/IEuiccServiceDumpResultCallback.aidl b/core/java/android/service/euicc/IEuiccServiceDumpResultCallback.aidl new file mode 100644 index 000000000000..ea55ebbadd88 --- /dev/null +++ b/core/java/android/service/euicc/IEuiccServiceDumpResultCallback.aidl @@ -0,0 +1,22 @@ +/* + * 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 android.service.euicc; + +/** @hide */ +oneway interface IEuiccServiceDumpResultCallback { + void onComplete(in String logs); +}
\ No newline at end of file |
