Skip to content

Instantly share code, notes, and snippets.

@Akianonymus
Created December 4, 2019 04:23
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save Akianonymus/b7bbee7bdb3fe7dc2349fd0431279e41 to your computer and use it in GitHub Desktop.
Save Akianonymus/b7bbee7bdb3fe7dc2349fd0431279e41 to your computer and use it in GitHub Desktop.
Remove HD ICON ( IMS )

Steps to remove persistent ims HD icon from notification bar.

Decompile ims.apk using apktool.

Go to decompiled folder, run below commands:

sed -i 's|.*device_is_hd_capable.*|    \<string name="device_is_hd_capable" /\>|g'  $(find -type f | grep strings.xml)


sed -i 's|.*config_update_service_status.*|    \<bool name="config_update_service_status"\>false\</bool\>|g'  $(find -type f | grep bools.xml)

Recompile apk.

Done

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment