Skip to content

Commit

Permalink
sort classes
Browse files Browse the repository at this point in the history
Signed-off-by: Prabhu Subramanian <[email protected]>
  • Loading branch information
prabhu committed Feb 7, 2024
1 parent b770291 commit 7f82b50
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions blint/android.py
Original file line number Diff line number Diff line change
Expand Up @@ -313,10 +313,12 @@ def collect_dex_files_metadata(app_file, parent_component, app_temp_dir):
name="internal:classes",
value=", ".join(
set(
[
_clean_type(c.fullname)
for c in dex_metadata.get("classes")
]
sorted(
[
_clean_type(c.fullname)
for c in dex_metadata.get("classes")
]
)
)
),
),
Expand Down

0 comments on commit 7f82b50

Please sign in to comment.