8fe674491b
Maintains the current resources table for apps that override PackageInstaller. soong is adding rename_resources_package property which renames an overriding package to the override name rather than the base name. This defaults packages which override PackageInstaller to _not_ rename from com.android.packageinstaller to the override name due to many hardcoded uses. Test: forrest Bug: 147434671 Change-Id: Ic7a5a9d8e3ffb60d0b9d4f4fda07946c64179e45
30 lines
888 B
Plaintext
30 lines
888 B
Plaintext
// Copyright (C) 2018 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.
|
|
|
|
android_app {
|
|
name: "PackageInstaller",
|
|
|
|
srcs: ["src/**/*.java"],
|
|
|
|
certificate: "platform",
|
|
privileged: true,
|
|
platform_apis: true,
|
|
rename_resources_package: false,
|
|
|
|
static_libs: [
|
|
"xz-java",
|
|
"androidx.leanback_leanback",
|
|
],
|
|
}
|