We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8faa69a commit ef9a4d0Copy full SHA for ef9a4d0
site/pages/docs/getting-started.mdx
@@ -466,8 +466,12 @@ struct Index {
466
android:launchMode="singleTask">
467
<!-- ↑↑↑ -->
468
469
+ <intent-filter>
470
+ <action android:name="android.intent.action.MAIN" />
471
+ <category android:name="android.intent.category.LAUNCHER" />
472
+ </intent-filter>
473
- <!-- ↓↓↓ 添加如下 intent-filter -->
474
+ <!-- ↓↓↓ 添加如下 intent-filter, 注意和上面的 intent-filter 是不同的 action 和 category -->
475
<intent-filter>
476
<action android:name="android.intent.action.VIEW" />
477
<category android:name="android.intent.category.DEFAULT" />
0 commit comments