diff options
| author | 2024-12-05 02:25:24 +0000 | |
|---|---|---|
| committer | 2024-12-05 02:25:24 +0000 | |
| commit | 02deb2e60e1b7e721027b68cc74aebf45338b124 (patch) | |
| tree | 015ca641cc05cf43f62d9920f2904f1aeda9db6b /api/api.go | |
| parent | 844824aacc8b9f2ac7cf86a397b45108a03b2e5c (diff) | |
| parent | 46f44cebc7f9a122a66e8b31834aaf8f8ba9a80e (diff) | |
Merge changes from topic "module-mig" into main
* changes:
Fix hidden API usages to alternative API usages
Move ondeviceintelligence files to packages/NeuralNetworks
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 5ca24de1b46a..e4d783eba4c3 100644 --- a/api/api.go +++ b/api/api.go @@ -29,6 +29,7 @@ const i18n = "i18n.module.public.api" const virtualization = "framework-virtualization" const location = "framework-location" const platformCrashrecovery = "framework-platformcrashrecovery" +const ondeviceintelligence = "framework-ondeviceintelligence-platform" var core_libraries_modules = []string{art, conscrypt, i18n} @@ -40,7 +41,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, platformCrashrecovery} +var non_updatable_modules = []string{virtualization, location, platformCrashrecovery, ondeviceintelligence} // 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 |