Android apps may have one or more entry points. We could get this information from the manifest and highlight these Activity classes in a different color.
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>