From 89a02b0b773bfc324c12ff36432629420feca19d Mon Sep 17 00:00:00 2001 From: xidameng Date: Tue, 18 Aug 2020 18:43:30 +0800 Subject: [PATCH] delete an useless file whose name is too long to be processed --- .../v4/app/INotificationSideChannel.aidl | 42 ------------------- 1 file changed, 42 deletions(-) delete mode 100644 tools/uart_adapter/app/android/UART_Adapter/app/build/intermediates/exploded-aar/com.android.support/support-v4/20.0.0/aidl/android/support/v4/app/INotificationSideChannel.aidl diff --git a/tools/uart_adapter/app/android/UART_Adapter/app/build/intermediates/exploded-aar/com.android.support/support-v4/20.0.0/aidl/android/support/v4/app/INotificationSideChannel.aidl b/tools/uart_adapter/app/android/UART_Adapter/app/build/intermediates/exploded-aar/com.android.support/support-v4/20.0.0/aidl/android/support/v4/app/INotificationSideChannel.aidl deleted file mode 100644 index 9df1577..0000000 --- a/tools/uart_adapter/app/android/UART_Adapter/app/build/intermediates/exploded-aar/com.android.support/support-v4/20.0.0/aidl/android/support/v4/app/INotificationSideChannel.aidl +++ /dev/null @@ -1,42 +0,0 @@ -/* - * Copyright (C) 2014 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.support.v4.app; - -import android.app.Notification; - -/** - * Interface used for delivering notifications via a side channel that bypasses - * the NotificationManagerService. - * - * @hide - */ -oneway interface INotificationSideChannel { - /** - * Send an ambient notification to the service. - */ - void notify(String packageName, int id, String tag, in Notification notification); - - /** - * Cancel an already-notified notification. - */ - void cancel(String packageName, int id, String tag); - - /** - * Cancel all notifications for the given package. - */ - void cancelAll(String packageName); -}