Skip to content

Commit

Permalink
implement app links settings to manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
matsumo0922 committed Oct 9, 2024
1 parent 0c80cca commit b43ab33
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
22 changes: 22 additions & 0 deletions composeApp/src/androidMain/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,32 @@
android:launchMode="singleTop"
android:windowSoftInputMode="adjustPan"
android:exported="true">
<tools:validation testUrl="https://www.fanbox.cc/@riosi1126/posts/8683683" />

<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>

<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW" />

<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />

<data android:scheme="https" />
<data android:host="matsumo0922.github.io" />
</intent-filter>

<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW" />

<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />

<data android:scheme="https" />
<data android:host="*.fanbox.cc" />
</intent-filter>
</activity>

<service
Expand Down
1 change: 0 additions & 1 deletion pages/.well-known/assetlinks.json

This file was deleted.

0 comments on commit b43ab33

Please sign in to comment.