Skip to content

Commit

Permalink
Remove android.intent.category.LEANBACK_LAUNCHER
Browse files Browse the repository at this point in the history
2023.08.03: Google play enforces that apps with LEANBACK_LAUNCHER Activity must be uploaded with App Bundle format, and possibly additional review steps. To avoid problems, remove it temporarily.
  • Loading branch information
RikkaW committed Aug 3, 2023
1 parent 5bd7ea7 commit de92d2c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion manager/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,10 @@
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
<category android:name="android.intent.category.LEANBACK_LAUNCHER" />

<!-- 2023.08.03: Google play enforces that apps with LEANBACK_LAUNCHER Activity must be uploaded with App Bundle format, -->
<!-- and possibly additional review steps. To avoid problems, remove it temporarily. -->
<!--<category android:name="android.intent.category.LEANBACK_LAUNCHER" />-->
</intent-filter>
</activity>
<activity
Expand Down

0 comments on commit de92d2c

Please sign in to comment.