mirror of
https://github.com/adelphes/android-dev-ext.git
synced 2025-12-22 09:29:38 +00:00
Manifest parser doesn't work with activity-alias #13
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @diskria on 5/26/2024
I'm trying to debug Telegram for Android app but parsing the manifest fails with an error. Here is manifest.
I found that the extension tries to find an activity tag with
action MAINandcategory LAUNCHER, but the problem is that this logic will not work with applications that implement changing the application icon usingactivity-alias. In this case,action MAINis still set to the main activity, butcategory LAUNCHERis not set, since it needs to be set to everyactivity-aliasthat the developer creates for each application icon.