diff options
| author | 2020-12-07 16:48:12 -0800 | |
|---|---|---|
| committer | 2020-12-11 11:30:24 -0800 | |
| commit | 258e8ff1f4ce16c78b85534ece1c5f3c23024222 (patch) | |
| tree | bbd69cf319071c664ecbe1848422ee312341ca5d | |
| parent | cd413cf83a789d5e25478d2119fada2e5f753976 (diff) | |
Change AppSearch querier from component to package.
Test: atest com.google.android.config.pts.ConfigTestCase
Bug: 169883602
Change-Id: I78c3e1a58351f15e02c62f32b6ca35d7cc5c05a5
| -rw-r--r-- | core/res/res/values/config.xml | 4 | ||||
| -rw-r--r-- | core/res/res/values/symbols.xml | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/core/res/res/values/config.xml b/core/res/res/values/config.xml index 40e11cb92d3e..37c3689cf564 100644 --- a/core/res/res/values/config.xml +++ b/core/res/res/values/config.xml @@ -4570,6 +4570,6 @@ <!-- Indicates that default fitness tracker app needs to request sensor and location permissions. --> <bool name="config_trackerAppNeedsPermissions">false</bool> - <!-- Component with platform query permissions for AppSearch --> - <string name="config_defaultAppSearchPlatformQuerierComponent" translatable="false"></string> + <!-- Package with global data query permissions for AppSearch --> + <string name="config_globalAppSearchDataQuerierPackage" translatable="false"></string> </resources> diff --git a/core/res/res/values/symbols.xml b/core/res/res/values/symbols.xml index e50eee6afa91..d94139cd5c8b 100644 --- a/core/res/res/values/symbols.xml +++ b/core/res/res/values/symbols.xml @@ -4115,8 +4115,8 @@ <java-symbol type="bool" name="config_trackerAppNeedsPermissions"/> - <!-- Component with platform query permissions for AppSearch --> - <java-symbol type="string" name="config_defaultAppSearchPlatformQuerierComponent" /> + <!-- Package with global data query permissions for AppSearch --> + <java-symbol type="string" name="config_globalAppSearchDataQuerierPackage" /> <!-- Color used by the accessibility focus rectangle --> <java-symbol type="color" name="accessibility_focus_highlight_color" /> |