Skip to content
Snippets Groups Projects
  1. Sep 07, 2023
    • Ryan Prichard's avatar
      [RESTRICT AUTOMERGE] Fix std::unique_ptr error with incomplete CommonFeatureGroup · c3e32935
      Ryan Prichard authored
      After upgrading libc++, Clang fails to compile DumpManifest.cpp.
      
      prebuilts/clang/host/linux-x86/clang-r498229/include/c++/v1/__memory/unique_ptr.h:63:19: error: invalid application of 'sizeof' to an incomplete type 'aapt::CommonFeatureGroup'
          static_assert(sizeof(_Tp) >= 0, "cannot delete an incomplete type");
                        ^~~~~~~~~~~
      
      Fix the problem by deferring the instantiation of ~unique_ptr, by
      making the ManifestExtractor constructor out-of-line and moving it and
      the initialization of commonFeatureGroup_ to a point after
      CommonFeatureGroup has been defined.
      
      Bug: b/175635923
      Test: treehugger
      Change-Id: I9ab51f29724fded24773344aa36763ffeea02d00
      Merged-In: I9ab51f29724fded24773344aa36763ffeea02d00
      c3e32935
  2. Sep 06, 2023
  3. Sep 05, 2023
    • Tomasz Wasilczyk's avatar
      Migrate String8|16.setTo to assignment operator · 31eb3c89
      Tomasz Wasilczyk authored
      Bug: 295394788
      Test: make checkbuild
      Change-Id: I370f66c469de73064dec2e42c539dc236dd69d1e
      31eb3c89
    • Shunkai Yao's avatar
      Merge "Avoid Object.wait(0)" into main · a199526d
      Shunkai Yao authored
      a199526d
    • Mark Hansen's avatar
      Dispatch from DecorView to View.toString() · 14de11ee
      Mark Hansen authored
      Today, the top-level DecorView is missing some useful pieces of data in its dump, for example the "V"isible and "E"nabled and "I"nvalidated and "D"irty flags. Add these back in.
      
      Today it looks like:
      
      ```
          View Hierarchy:
            DecorView@41b7f45[MapsActivity]
              android.widget.LinearLayout{a1c3dbb V.E...... ......ID 208,0-1920,1080}
                android.view.ViewStub{c5878e4 G.E...... ......I. 0,0-0,0 #1020194 android:id/action_mode_bar_stub}
      ```
      
      Note how the DecorView doesn't have the deep debug info the other views do.
      
      This change updates toString to work the same as the other views, but including the extra title suffix information.
      
      This is a new version of aosp/2276228, but on the main branch.
      
      Change-Id: I35415f7625dc99a80412f6656800504eea876d91
      14de11ee
  4. Sep 01, 2023
  5. Aug 31, 2023
  6. Aug 30, 2023
  7. Aug 29, 2023
Loading