Skip to main content
Rlgo

Android hide app icon from launcher

AndroidManifest.xml #

  <uses-feature
    android:name="android.software.leanback"
    android:required="true" />

  <activity android:name=".MainActivity">
    <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LEANBACK_LAUNCHER"/>
    </intent-filter>
  </activity>

Reference #

https://stackoverflow.com/a/49398738