From 0acafec609b6ec1f2bb3d3dffc9e06618053f33f Mon Sep 17 00:00:00 2001 From: Steven Moreland Date: Mon, 5 Oct 2020 21:02:26 +0000 Subject: [PATCH] incremental: Move AIDL file to declared package. There was a regression in the AIDL compiler recently that removed the requirement that, like in Java, .aidl unstructured parcelables (these parcelable declarations) are in directories and files which match their packages and file names. This CL moves relevant files to the correct directory required by their type. Bug: N/A Test: build Change-Id: I5fd112f1bcd0d1fc3be3c8dc7f1959242d43858e --- core/java/android/content/pm/IncrementalStatesInfo.aidl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/java/android/content/pm/IncrementalStatesInfo.aidl b/core/java/android/content/pm/IncrementalStatesInfo.aidl index b5aad1269c60d..7064fbfa8b6a6 100644 --- a/core/java/android/content/pm/IncrementalStatesInfo.aidl +++ b/core/java/android/content/pm/IncrementalStatesInfo.aidl @@ -15,6 +15,6 @@ ** limitations under the License. */ -package com.android.server.pm; +package android.content.pm; -parcelable IncrementalStatesInfo; \ No newline at end of file +parcelable IncrementalStatesInfo;