- Oct 16, 2023
-
-
Hunter Knepshield authored
-
Tri Vo authored
-
Treehugger Robot authored
-
Roshan Pius authored
-
Jihoon Kang authored
-
Eric Biggers authored
-
Song Chun Fan authored
-
Treehugger Robot authored
-
Paul Duffin authored
The `droidstubs.extensions_info_file` property is only used when `api_levels_annotations_enabled: true`. The `framwork-doc-stubs` uses `api_levels_module` instead and so does not need `extensions_info_file` any more. Bug: 305688818 Test: m framework-doc-stubs # Before and after and check output to confirm that it does not change Change-Id: I4ad3f5b24e998eb9d5d47fa2240d2281fa9d6fc6
-
Ian Baker authored
-
Ian Baker authored
-
Treehugger Robot authored
-
Kiyoung Kim authored
-
Riddle Hsu authored
-
Motomu Utsumi authored
-
- Oct 15, 2023
-
-
Thiébaud Weksteen authored
-
- Oct 14, 2023
-
-
Harish Mahendrakar authored
Removed MediaMetadataRetrieverTest from MediaFrameworkUnitTestRunner Bug: 305324235 Test: atest com.android.mediaframeworktest.unit.MediaMetadataRetrieverTest Change-Id: I9bbd0a278c7c1b9e6cb14b3a79bde113837bd4c1
-
Peiyong Lin authored
Avoid unncessary JNI call. The application process will be determined whether it should use ANGLE or not before it determines whether it should show the dialog box. This patch cleans up the unnecessary JNI call and bookkeeps the ANGLE usage status. Bug: b/283858001 Test: test with camera with dialog on Test: atest CtsAngleIntegrationHostTestCases Change-Id: I2d398a36e0320b16de8664909ceb024089128aad Merged-In: I2d398a36e0320b16de8664909ceb024089128aad
-
- Oct 13, 2023
-
-
Victor Hsieh authored
-
Victor Hsieh authored
Test: N/A Bug: 303523453 Change-Id: Ib861153b6bec91c612f55c21ee6bbf339240f15f
-
Achim Thesmann authored
Merge "Update OWNERS for BAL logic Change-Id: I04fe3ac8f7d49d3b59395269d000817d59452d22 Test: presubmit (owners change only) Bug: 305115571" into main
-
Roshan Pius authored
Bug: 303286040 Test: Compiles Merged-In: Ife7098e0619b17c1f1ed3b276592207d09cdb6ea Change-Id: Ife7098e0619b17c1f1ed3b276592207d09cdb6ea
-
John Stiles authored
-
Peiyong Lin authored
-
Jiakai Zhang authored
* changes: Revert^2 "Propagate external profile errors for `adb insta..." Revert^2 "Fail adb install on external profile errors."
-
Shunkai Yao authored
-
Olivier Gaillard authored
-
Robin Lee authored
-
John Stiles authored
We were shadowing the `turbulence` function with a variable of the same name. This isn't illegal, but it is not a good idea to do this. Renamed the variable to `turb`. Change-Id: Ic2046d2ffe507f03e53a947a884114dd660b143e
-
Harish Mahendrakar authored
Bug: 304812355 Test: atest com.android.mediaframeworktest.unit.MediaMetadataRetrieverTest Change-Id: I043fb987d02a45735bf799055f50cfa9d8bac328
-
Motomu Utsumi authored
framework code needs to check flags in android_core_networking to call connectivity FlaggedApi. Bug: 279380356 Test: TH Merged-In: I7031072c2cd98241bc70a6a29d026e2ef7e3c842 Change-Id: I1f95ba503865fa77ff9b9d80b6e106bcd9cf6922
-
Jihoon Kang authored
java_api_library modules run validation to check the sanity of the API text files by default when generating the stubs from txt files. However, this leads to circular dependency issue when the validations are added to the full api surface stub java_api_library modules as droidstubs may set sdk_version property. Therefore, disable the validation for full api surface java_api_library (e.g. android_*_stubs_current) modules. Test: m nothing --build-from-text-stub Bug: 288624417 Change-Id: Ib1b7b804736ef4e4cd2ea979aabea211af1927af
-
Treehugger Robot authored
-
Arnab Sen authored
Currently, MovePackageHelper#movePackageInternal has an parameter for UserHandle which is derived from the process calling PackageManager#movePackage. This causes an issue where the package to be moved was not installed on the calling user, but will be installed for that user after the move. This can also happen if the package is moved via shell command: pm move-package as given in the test section. This CL fixes the issue by using the one of user ids for whom the package has been installed and removes the requirement of deriving the UserHandle. This ensures that the package is installed for the previously installed users only. Also, instead of filtering the app for one user, this CL checks for all installed users. Test: manual 1. Create multiple users apart from system user 2. Make ExternalLocTestApp and install for the non-system user. 3. Mount a sdcard and format as internal. 4. Execute adb shell pm move-package com.android.framework.externalloctestapp <UUID> 5. Check that app is not installed only for the previously installed user Change-Id: I1919b9e15a99a36b1bff3b870dc2a74d4d4621ac
-
Achim Thesmann authored
Change-Id: I04fe3ac8f7d49d3b59395269d000817d59452d22 Test: presubmit (owners change only) Bug: 305115571
-
Peiyong Lin authored
Previously after the application is launched, the GraphicsEnvironment will call into setup ANGLE again to check whether the in use toast message dialog should be shown. However, this step is unnecessary and creates some overhead. This patch eliminates the call into ANGLE setup and only check whether ANGLE is used. Bug: b/283858001 Test: check toast message when opt-in and opt-out Change-Id: I91f59c17100ac43ee8eea4f3fa8c86602c26a416 Merged-In: I91f59c17100ac43ee8eea4f3fa8c86602c26a416
-
- Oct 12, 2023
-
-
Shunkai Yao authored
Remove the outdated max output channel positions comment Bug: 282915771 Test: m docs Change-Id: Ic5a9cd2288d14ac75bad962a761dff2a3b07b273
-
David Duarte authored
A function is registered with atexit when compiling with clang coverage. https://cs.android.com/android/platform/superproject/+/main:external/compiler-rt/lib/profile/InstrProfilingFile.c;l=508;drc=c58a43648cd6121c51a2e795a28e2ef90d7813e6 This function dumps coverage when the process exits. However when calling System.exit from java this leads to a call to _exit(2) which doesn't run exit hooks. Instead when compiled with coverage call exit(3) to run the exit hooks. This behavior is the same as what the default "exit" option of ART is doing. https://cs.android.com/android/platform/superproject/+/master:art/libartbase/base/fast_exit.h;l=44;drc=bdf1737bd17132525bcfdc778663123b61e97fa3 Another way to fix this might be to call __llvm_profile_write_file before _exit(2). Test: run avatar and see if coverage increase Bug: 304849228 Change-Id: Iec40612526f34472320be5ba5980cd1eea361ebc
-
Victor Hsieh authored
-
Kweku Adams authored
-