I have a special case where I need to remove an Activity
which is not used in the code itself and not references in the Manifest. In other words it is dead code which is not obfuscated, so I want to get rid of it.
The normal constrains keep classes which extends Activity
which is fine in general, but that keeps that dead code.
How can I exclude this special Activity
from being kept?