Skip to content
Snippets Groups Projects
  1. Jul 31, 2023
    • Casey Borders's avatar
      RemoteAuth Boilerplate · 13a35ea2
      Casey Borders authored
      Stub out code and test directories
      
      BUG: 290094832
      Test: atest FrameworksNetTests RemoteAuthUnitTests
      Change-Id: I850242640f32bea3d46febcde5f3719619b1ea07
      13a35ea2
  2. Apr 22, 2023
  3. Apr 19, 2023
  4. Apr 18, 2023
  5. Mar 27, 2023
  6. Mar 24, 2023
  7. Mar 17, 2023
  8. Mar 15, 2023
    • Anton Hansson's avatar
      Use filegroup defaults for framework sources · 57f3d69f
      Anton Hansson authored
      There's now a shared defaults module for this kind of filegroup. Use
      that and remove the previously duplicated prop.
      
      Bug: 271816210
      Test: m
      Change-Id: Ia4547984a73179fdfc98c427482dd10246f9722c
      57f3d69f
  9. Mar 14, 2023
  10. Mar 09, 2023
  11. Mar 06, 2023
    • Cole Faust's avatar
      Compile HalfSheetUX against framework-connectivity-t.impl · 41228921
      Cole Faust authored
      HalfSheetUX uses private apis of framework-connectivity-t. It appears
      that using just "framework-connectivity-t" will compile against either
      the stubs or source of framework-connectivity-t depending on if the
      module was included in the same apex as it or not.
      
      aosp/2462194 is adding the ability to compile modules like HalfSheetUX
      outside of the context of the apex, at which point it will start
      compiling against stubs if we don't explicetly specify to use the
      implementation library.
      
      Bug: 254205429
      Test: m javac-check with aosp/2462194
      Change-Id: I1d41e47aa0e4e3d320b78b28cfc181fc30c4537c
      Merged-In: I1d41e47aa0e4e3d320b78b28cfc181fc30c4537c
      41228921
  12. Feb 27, 2023
  13. Feb 24, 2023
  14. Jan 30, 2023
  15. Jan 15, 2023
  16. Dec 30, 2022
  17. Dec 16, 2022
  18. Dec 03, 2022
  19. Nov 23, 2022
    • Cole Faust's avatar
      Remove usages of java_api_finder · 417c1d9c
      Cole Faust authored
      This errorprone checker is no longer used.
      
      Bug: 260268418
      Test: Presubmits
      Change-Id: I055bce5957ae05faef683e3d515332bd119fb720
      417c1d9c
    • Hassan Ali's avatar
      Add ConfigInfrastructure lib to Android.bp · c4f63fa9
      Hassan Ali authored
      As part of moving DeviceConfig.java to
      packages/modules/ConfigInfrastructure, We need to add
      ConfigInfrastructure lib dependency to Android.bp as DeviceConfig APIs
      will not be part of the non-updatable part and will not be part of the
      base module_current SDK so we have to add an explicit dependency.
      
      Test: m
      bug: 253019048
      Change-Id: I29f993342e1baf4e75b30c8d99de10bc087a582b
      c4f63fa9
  20. Nov 16, 2022
  21. Oct 27, 2022
    • Harshit Mahajan's avatar
      [HalfSheetUX] Remove explicit targetSdkVersion · 44dd8cc3
      Harshit Mahajan authored
      Going forward targetSdkVersion would be set by build system.
      It would be by default set to 10000 before SDK finalization,
      and updated to the new API level after finalization.
      
      Effectively it would mean:
      1. '10000' in aosp and internal master
      2. Finalized number in development branches like "33" in "tm-dev"
      3. As sdk hasn't been finalised in "udc-dev", it would be "10000"
      which would be automatically updated to finalized version after sdk finalization.
      
      Removing the target sdk version declaration from the blueprint and manifest files.
      More details can be found here go/mainline-modules-target-sdk-version-fix
      
      Bug: b/242296003
      Test: croot; sdks=`find ./out -name 'HalfSheetUX.apk' | grep -v .intermediates`; echo $sdks; for sdk in $sdks;do aapt2 dump badging `echo $sdk` | grep targetSdkVersion:; done
      1. outputs 33 in tm-mainline-prod
      2. outputs 10000 in master
      
      Change-Id: I68120dd50c2020da7f91e29550d02b079aa61d7a
      44dd8cc3
  22. Oct 14, 2022
    • Paul Duffin's avatar
      Remove system_server_current related work arounds · 5118a524
      Paul Duffin authored
      (cherry picked from db3ad828)
      
      Previously, a library that set sdk_version: "system_server_current"
      could only access system-server or public APIs from other libraries.
      After change r.android.com/2238635 they will be able to access the
      following (in order):
      * system-server
      * module-lib
      * system
      * public
      
      Bug: 204176972
      Test: m com.android.tethering
            # Without change r.android.com/2238635 the affected libraries
            # fail to compile due to missing symbols that are not in the
            # public API. With that change it compiles correctly.
      Change-Id: Id6aad00aed0af6b724afec663a7be287058e625e
      Merged-In: Id6aad00aed0af6b724afec663a7be287058e625e
      5118a524
  23. Sep 29, 2022
  24. Sep 23, 2022
  25. Sep 21, 2022
  26. Sep 19, 2022
  27. Sep 14, 2022
    • Krzysztof Kosiński's avatar
      Switch to source-built GSON. · 9d654aad
      Krzysztof Kosiński authored
      Bug: 243950468
      Test: local build, presubmit
      Change-Id: I806a9f32402a8aeb36d72e3dca2160c4d8ff92e8
      9d654aad
    • Qin Wang's avatar
      Bugfix:com.android.server.nearby.fastpair.cache.FastPairCacheManagerTest#getAllInfo fail · 29db97b4
      Qin Wang authored
      Test fails on MTS but works fine on Eng atest.
      Ideally, save one DiscoveryItem, the size should be 1, save two items,
      the size should be 2.
      But in Eng atest, the result shows that there seems to be an extra DiscoveryItem stored in the
      database. After investigation, found that the extra one is from another test case: saveRetrieveInfo, where another DiscoveryItem was saved to the database.
      Since tests can be run in parallel, sometimes one test may run before or after another. So, it may have different test results.
      Combining the two tests into a single test and letting them run sequentially solved the problem.
      
      Bug: 238394647
      Test: unit test
      Change-Id: I9536ce6ad4fff78188f0ceb325d275b05aa47da4
      Merged-In: I9536ce6ad4fff78188f0ceb325d275b05aa47da4
      29db97b4
  28. Jul 21, 2022
  29. Jun 08, 2022
Loading