TreeHugger Robot
2b20672580
Merge "[wm] Introduce meta-data tag (android.supports_size_changes)" into rvc-dev am: 247144d4a2
...
Original change: undetermined
Change-Id: I235f8efd7645edc8266b1d0def365b5c067ebbe2
2020-06-01 21:39:50 +00:00
TreeHugger Robot
247144d4a2
Merge "[wm] Introduce meta-data tag (android.supports_size_changes)" into rvc-dev
2020-06-01 21:37:21 +00:00
Steven Thomas
cf89cad345
Merge "Clarify FRAME_RATE_COMPATIBILITY_* params" into rvc-dev am: 061dec3e8d
...
Original change: undetermined
Change-Id: I125d7c28abd8049036c02479ea2a5245689f9caf
2020-06-01 20:58:32 +00:00
Steven Thomas
061dec3e8d
Merge "Clarify FRAME_RATE_COMPATIBILITY_* params" into rvc-dev
2020-06-01 20:44:30 +00:00
Kevin Chyn
9710f8eaab
Merge "Send callingUserId from AuthService -> BiometricServiceBase" into rvc-dev am: 20534dcc8d
...
Change-Id: Ib44ff58a107d0e1e4c58b98f0d15234f1b2ea01c
2020-06-01 16:04:30 +00:00
Jeff Sharkey
459f2c806b
Merge "Revert "Apps shouldn't be disabling StrictMode checks."" into rvc-dev am: c99a508218
...
Change-Id: I5d4a4161fa0c9e9ab8bef9a543c357bab4576408
2020-06-01 16:04:05 +00:00
Kevin Chyn
20534dcc8d
Merge "Send callingUserId from AuthService -> BiometricServiceBase" into rvc-dev
2020-06-01 15:57:00 +00:00
Jeff Sharkey
c99a508218
Merge "Revert "Apps shouldn't be disabling StrictMode checks."" into rvc-dev
2020-06-01 15:55:14 +00:00
Jeff Sharkey
3080fb7c9e
Revert "Apps shouldn't be disabling StrictMode checks."
...
This reverts commit 14e961870a .
Reason for revert: satayev@
Bug: 156336269
Change-Id: Ic0d3a650156c06f58fce4c28157191f4497469f0
2020-06-01 15:54:41 +00:00
Kwangho Lim
2141f707b7
[wm] Introduce meta-data tag (android.supports_size_changes)
...
Introduce meta-data tag "android.supports_size_changes" which will indicated that an activity works well with size changes like display changing size.
Test: Manual - Run by adding metadata to the app running with SizeCompatMode.
Bug: 155041354
Change-Id: I0f358f63c9e14c63294275c0bfcd08744bee1108
2020-06-01 08:34:38 -07:00
Jeff Sharkey
e42cbb8704
Merge "Support getStorageVolume() for synthetic volumes." into rvc-dev am: fd71805e1c
...
Change-Id: I5f6675f1514ed308014e833d28e1b3a3cbe8c93a
2020-06-01 14:38:01 +00:00
Jeff Sharkey
f05d514436
Merge "Apps shouldn't be disabling StrictMode checks." into rvc-dev am: 4d96602de0
...
Change-Id: Iaf92a5949c9196d5d4194322e360d114325a4eea
2020-06-01 14:37:23 +00:00
Jeff Sharkey
fd71805e1c
Merge "Support getStorageVolume() for synthetic volumes." into rvc-dev
2020-06-01 14:18:32 +00:00
Jeff Sharkey
4d96602de0
Merge "Apps shouldn't be disabling StrictMode checks." into rvc-dev
2020-06-01 14:16:54 +00:00
Julia Reynolds
28bbd2256b
Merge "Add method for Settings" into rvc-dev am: 829ac140f8
...
Change-Id: I7ca30e8641733595a050c3fe4056f45d43c0d60e
2020-05-31 19:08:24 +00:00
Julia Reynolds
829ac140f8
Merge "Add method for Settings" into rvc-dev
2020-05-31 18:57:41 +00:00
Charles Chen
e50d17bf16
Merge "Fix get display from display context derived context not working" into rvc-dev am: 13e3568567
...
Change-Id: I814dcfd418f6b7bac9396d539cfef9ed7fee809f
2020-05-30 06:51:40 +00:00
Charles Chen
13e3568567
Merge "Fix get display from display context derived context not working" into rvc-dev
2020-05-30 06:35:35 +00:00
Charles Chen
e22c4cb3c6
Fix get display from display context derived context not working
...
In ContextImpl, we checked the flag "mIsAssociatedWithDisplay" to
identify if a context can access a display or not. The flag wasn't
passed from outer context, and it leads to an issue that context
which created from #createConfigurationContext from display context
failed to obtain display instance.
This CL passes mIsAssociatedWithDisplay from outer context and
also add test to verify the behavior.
fixes: 157719118
Test: atest ContextTest ContextAccessTest
Change-Id: Ibeb2a08c75f90304e12dcf99293c84409c5eea34
2020-05-30 12:46:59 +08:00
Jason Hsu
540918349a
Merge "Fix talkback did not speak out ReplacementSpan's content description." into rvc-dev am: dac6071aca
...
Change-Id: I762f05ffdba5a63e1d805beed44e28a8020fbc33
2020-05-30 01:12:12 +00:00
Jason Hsu
dac6071aca
Merge "Fix talkback did not speak out ReplacementSpan's content description." into rvc-dev
2020-05-30 01:06:23 +00:00
Yara Hassan
795f3ee445
Add finish() method to DataShare Read and Write Adapters am: dc699fb8ce
...
Change-Id: Ie391d155a80ec2656d28bce9dc3ca2d9d0c05757
2020-05-29 23:51:08 +00:00
Ahaan Ugale
4d8efece25
Merge changes from topic "Data Share Sender Crash" into rvc-dev
...
* changes:
Handle sender's crash in Data Share API
Add finish() method to DataShare Read and Write Adapters
2020-05-29 23:32:48 +00:00
Kevin Chyn
5433cd4070
Send callingUserId from AuthService -> BiometricServiceBase
...
Since authenticatorIds are collected from AuthService, which is
system_server, we need to get the callingUserId before the code
enters system_server, which clears calling identity.
Test: 1) Set up work profile, install BiometricPromptDemo
2) Enroll work profile fingerprint
3) Open work profile version of BiometricPromptDemo
4) Create biometric-bound keys and authenticate with fingerprint
Before this change, key was unusable. After this change,
the key can be used
Fixes: 157486161
Change-Id: I4ec89b9cb13caff397b1a1acd844962736290040
Merged-In: I4ec89b9cb13caff397b1a1acd844962736290040
2020-05-29 23:21:57 +00:00
Ahaan Ugale
b93b20a453
Merge "AF Inline: Notify the registered AutofillCallback, also fix filtering." into rvc-dev am: 7f3570724d
...
Change-Id: I40d4a4f6b99b57bd68427e82524af734615e5d8a
2020-05-29 23:07:37 +00:00
Ahaan Ugale
7f3570724d
Merge "AF Inline: Notify the registered AutofillCallback, also fix filtering." into rvc-dev
2020-05-29 23:03:44 +00:00
TreeHugger Robot
4af2991795
Merge "Fixed how ShellCommand show exceptions." into rvc-dev am: 725f9cea7f
...
Change-Id: I2b8d3c4941c79663d5f02e16b244801bbd7d97ea
2020-05-29 23:01:16 +00:00
TreeHugger Robot
725f9cea7f
Merge "Fixed how ShellCommand show exceptions." into rvc-dev
2020-05-29 22:58:03 +00:00
Joanne Chung
a65d687ac8
Merge "Update textclassifier OWNER file." am: d1182b54c3 am: e4e6a3fabb
...
Change-Id: Ib9657448666652e66956b2c1c3309bbcae352daa
2020-05-29 22:09:44 +00:00
Remi NGUYEN VAN
669fdbeb65
Merge "Allow TRANSPORT_TEST ethernet networks" am: 8dc6549e05 am: 0acc645912
...
Change-Id: I030f0aeb0f196fee213fee02a25c5a7e66618b93
2020-05-29 22:09:13 +00:00
Treehugger Robot
df04459b1d
Merge "Add ParcelableHolder type" am: 7d2fc62868 am: 841a116b7e
...
Change-Id: Ibb9629999638c868e453889592b8290673be04c9
2020-05-29 22:08:18 +00:00
TreeHugger Robot
df59ca6ce5
Merge "Add test for permission APEX." into rvc-dev am: e40b321ee6
...
Change-Id: Ib64481eed6554a3c997d5a99d897b9b732328324
2020-05-29 21:47:34 +00:00
Joanne Chung
e4e6a3fabb
Merge "Update textclassifier OWNER file." am: d1182b54c3
...
Change-Id: I10e7864d1c2158d65615667640baa7f8224fa5f9
2020-05-29 21:46:08 +00:00
Remi NGUYEN VAN
0acc645912
Merge "Allow TRANSPORT_TEST ethernet networks" am: 8dc6549e05
...
Change-Id: Ib9ab1ddb855c90219e94c4b74dc7268cfbcdb661
2020-05-29 21:43:41 +00:00
Treehugger Robot
841a116b7e
Merge "Add ParcelableHolder type" am: 7d2fc62868
...
Change-Id: If7258d57ff14020c3127aa7eadd892ed51301cd4
2020-05-29 21:42:41 +00:00
Benedict Wong
8be61b3dd9
Merge "Add RequiresFeature annotations for IKEv2 VPN profiles" am: 9d7577537b
...
Change-Id: I4a135e75105a49b25b65ba76a3c252467bd9d5ea
2020-05-29 21:41:40 +00:00
TreeHugger Robot
e40b321ee6
Merge "Add test for permission APEX." into rvc-dev
2020-05-29 21:40:19 +00:00
Yara Hassan
dc699fb8ce
Add finish() method to DataShare Read and Write Adapters
...
The finish() method is used to clear hard references after
the data copy has ended. This fixes a bug where the references are cleared before onError() is attempted to be called.
Test: CTS tests in followup CL
Bug: 157136368
Fixes: 157136368
Change-Id: If924fe388762831af90579e6b00bdf223230e203
2020-05-29 14:35:13 -07:00
felipeal
283e3c388d
Fixed how ShellCommand show exceptions.
...
Prior to this change, it was duplicating the exception. Example:
$ adb shell cmd car_service create-user --flags 4444 --timeout 100 --hal-only Dude
Exception occurred while executing: new user flags mismatch on existing users on {.requestId = 2, .newUserInfo = {.userId = 11, .flags = 0x115c}, .newUserName = Dude, .usersInfo = {.currentUser = {.userId = 11, .flags = NONE}, .numberUsers = 3, .existingUsers = [{.userId = 0, .flags = 0x9}, {.userId = 10, .flags = ADMIN}, {.userId = 11, .flags = NONE}]}}
java.lang.IllegalArgumentException: new user flags mismatch on existing users on {.requestId = 2, .newUserInfo = {.userId = 11, .flags = 0x115c}, .newUserName = Dude, .usersInfo = {.currentUser = {.userId = 11, .flags = NONE}, .numberUsers = 3, .existingUsers = [{.userId = 0, .flags = 0x9}, {.userId = 10, .flags = ADMIN}, {.userId = 11, .flags = NONE}]}}
at com.android.internal.util.Preconditions.checkArgument(Preconditions.java:69)
at android.car.userlib.UserHalHelper.toVehiclePropValue(UserHalHelper.java:503)
at com.android.car.hal.UserHalService.createUser(UserHalService.java:339)
Now it's showing the failed command instead:
Exception occurred while executing 'create-user --flags 4444 --timeout 100 --hal-only Dude':
java.lang.IllegalArgumentException: new user flags mismatch on existing users on {.requestId = 2, .newUserInfo = {.userId = 11, .flags = 0x115c}, .newUserName = Dude, .usersInfo = {.currentUser = {.userId = 11, .flags = NONE}, .numberUsers = 3, .existingUsers = [{.userId = 0, .flags = 0x9}, {.userId = 10, .flags = ADMIN}, {.userId = 11, .flags = NONE}]}}
at com.android.internal.util.Preconditions.checkArgument(Preconditions.java:69)
at android.car.userlib.UserHalHelper.toVehiclePropValue(UserHalHelper.java:503)
at com.android.car.hal.UserHalService.createUser(UserHalService.java:339)
Test: manual verification
Bug: 150408921
Change-Id: I42221fbe2410770b0755c32d16620acc71d8d5d2
2020-05-29 21:21:56 +00:00
Winson Chung
30d7f640f6
Merge "Mirror task visibility on task org leash" into rvc-dev am: 1298d2b760
...
Change-Id: If7b85abd5c2f5356688f2d2575df6ac8870fbc3d
2020-05-29 21:18:22 +00:00
Ahaan Ugale
974c3114dc
AF Inline: Notify the registered AutofillCallback, also fix filtering.
...
This is missing notifications on the suggestions being hidden/shown
while filtering, but that is a bit harder to solve as we have to pipe
this state back from AutofillInlineSessionController. (although, I'm not
certain we even want this behavior, however it is inconsistent with the
dropdown behavior for now)
See bugs linked for what is fixed for filtering (some are not marked as
fixed as they still might need cts tests).
The main change is to make the privacy protection mechanism a bit
smarter - it now only applies to text-matching based logic.
Fix: 157763435
Fix: 156930859
Bug: 155517211
Bug: 157762527
Test: atest CtsAutoFillServiceTestCases:DatasetFilteringInlineTest \
CtsAutoFillServiceTestCases:InlineFilteringTest \
CtsAutoFillServiceTestCases:DatasetFilteringDropdownTest
Test: atest android.autofillservice.cts.inline
Change-Id: Icf94e21ba0df3b15a32454038772967cc1f6da79
2020-05-29 14:12:27 -07:00
Winson Chung
1298d2b760
Merge "Mirror task visibility on task org leash" into rvc-dev
2020-05-29 21:06:03 +00:00
Winson Chung
14a657c944
Mirror task visibility on task org leash
...
- Depending on the navigation mode, the task is either visible or not
when entering PIP, and if it is not visible, initially hide the leash
so that SysUI can control it's visibilty to prevent a flash
Bug: 156941210
Test: Introduce artificial delay on sysui taskAppeared() and verify that
we don't see the task when entering pip in gesture nav (and that
it still works in 3 button)
Change-Id: I291afd209af118ac178f8a6421d7df25974315f0
2020-05-29 21:05:37 +00:00
Julia Reynolds
0c45c6e8ff
Add method for Settings
...
Test: manual
Bug: 156033178
Change-Id: I3c334c6697e9bc13451faa0c0df1cdbdc3eaf6ea
2020-05-29 19:37:56 +00:00
TreeHugger Robot
10739665e3
Merge changes from topic "controls_config" into rvc-dev am: 61d46be2c2
...
Change-Id: Iafcebeadeab0dbac7f561fe4993fc9aa0865d2ad
2020-05-29 18:15:01 +00:00
TreeHugger Robot
61d46be2c2
Merge changes from topic "controls_config" into rvc-dev
...
* changes:
Controls UI - Allow seeding for multiple apps
Controls UI - Support seeding for up to 6 structures
2020-05-29 18:12:43 +00:00
Ryan Mitchell
32a8e378e4
Merge "Install system app in greatest priority partition" into rvc-dev am: d32418a72a
...
Change-Id: I4fa9569fc48dafc38538e46893597a4ec248a254
2020-05-29 18:11:47 +00:00
Ryan Mitchell
d32418a72a
Merge "Install system app in greatest priority partition" into rvc-dev
2020-05-29 18:05:31 +00:00
Benedict Wong
5b05c2ff71
Merge "Add RequiresFeature annotations for IKEv2 VPN profiles" into rvc-dev am: c5401ef015
...
Change-Id: Ibc0f236234cd87d50a393c3dfaca7898b04e7432
2020-05-29 17:32:42 +00:00
Benedict Wong
c5401ef015
Merge "Add RequiresFeature annotations for IKEv2 VPN profiles" into rvc-dev
2020-05-29 17:17:10 +00:00