[測試] App installed through android studio not shown in Launcher

請問各位ching
我用android studio寫既app
係google chromecast  with google tv 既首頁或我既app都唔顯示
要去系統既installed app都見到
firetv stick 4k又冇呢個問題
我試左下面兩個方法都唔得
請問有其他方法嗎
  1. <activity android:name=".MainActivity" android:label="@string/app_name_full">
  2.         <intent-filter>
  3.             <action android:name="android.intent.action.MAIN"/>
  4.             <category android:name="android.intent.category.LAUNCHER"/>
  5.         </intent-filter>
  6.         <intent-filter>
  7.             <action android:name="android.intent.action.VIEW" />
  8.             <category android:name="android.intent.category.DEFAULT" />
  9.             <category android:name="android.intent.category.BROWSABLE" />
  10.             <data android:scheme="http"
  11.                   android:host="www.giorgos.nl"
  12.                   android:pathPrefix="/cv" />
  13.             <data android:scheme="cv"
  14.                   android:host="giorgos"/>
  15.         </intent-filter>
  16. </activity>
複製代碼
  1. <intent-filter>
  2.         <action android:name="android.intent.action.MAIN" />
  3.         <category android:name="android.intent.category.LAUNCHER" />
  4. </intent-filter>
  5. <intent-filter>
  6.         <category android:name="android.intent.category.DEFAULT" />
  7.         <category android:name="android.intent.category.BROWSABLE" />

  8.         <action android:name="android.intent.action.SEND" />
  9.         <action android:name="android.intent.action.SENDTO" />

  10.         <data android:scheme="sms" />
  11.         <data android:scheme="smsto" />
  12.         <data android:scheme="mms" />
  13.         <data android:scheme="mmsto" />
  14. </intent-filter>
複製代碼

Google TV唔同android

https://developer.android.com/training/tv/start/start
  1.     <intent-filter>
  2.       <action android:name="android.intent.action.MAIN" />
  3.       <category android:name="android.intent.category.LEANBACK_LAUNCHER" />
  4.     </intent-filter>
複製代碼

TOP