diff options
| author | 2023-11-14 14:30:26 -0800 | |
|---|---|---|
| committer | 2023-11-17 06:42:43 -0800 | |
| commit | 354b10b1b01ed5c372c9d97642ddc47547eaae3e (patch) | |
| tree | 46484b2eed81a07cf422f60926e8902e61063a42 /api/api.go | |
| parent | 1744218ee37bb8dbe3867f8c9c98890309c2aa77 (diff) | |
Created empty framework-nfc non-updatable module
Bug: 303286040
Test: Device boots up after flashing
Change-Id: Iad08614f0aa3b7bea12a1ad52debd0ee13302a8e
Diffstat (limited to 'api/api.go')
| -rw-r--r-- | api/api.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/api/api.go b/api/api.go index 8df6dab715ef..71b1e10d2f47 100644 --- a/api/api.go +++ b/api/api.go @@ -32,6 +32,7 @@ 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 +44,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} +var non_updatable_modules = []string{virtualization, location, nfc} // 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 |