diff options
author | 2024-01-31 18:49:36 +0000 | |
---|---|---|
committer | 2024-02-01 18:40:52 +0000 | |
commit | 5221496f142111e47e2d7b8fad1151763dd7f443 (patch) | |
tree | c7a044a8fec80e0878e37b729bce3fe39890d14f /api/api.go | |
parent | a9b3c063610331b221944bc24c64fa80d9c1e511 (diff) | |
parent | 96dac95fc12332513bacf2047758df53ff1acbf2 (diff) |
framework-nfc: Switch to "framework-module-defaults" am: 96dac95fc1
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/2863748
Merged-In: I8bd5e38b1482600594c41660d14537cf15b48318
Change-Id: Ie96315990595f1405a1e8a4c7f184596dc3a572b
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
Diffstat (limited to 'api/api.go')
-rw-r--r-- | api/api.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/api/api.go b/api/api.go index a632582ce76d..fa2be21db09f 100644 --- a/api/api.go +++ b/api/api.go @@ -31,7 +31,6 @@ const conscrypt = "conscrypt.module.public.api" const i18n = "i18n.module.public.api" const virtualization = "framework-virtualization" const location = "framework-location" -const nfc = "framework-nfc" var core_libraries_modules = []string{art, conscrypt, i18n} @@ -43,7 +42,7 @@ var core_libraries_modules = []string{art, conscrypt, i18n} // APIs. // In addition, the modules in this list are allowed to contribute to test APIs // stubs. -var non_updatable_modules = []string{virtualization, location, nfc} +var non_updatable_modules = []string{virtualization, location} // The intention behind this soong plugin is to generate a number of "merged" // API-related modules that would otherwise require a large amount of very |