Skip to content

Commit

Permalink
[ANDROID] Add base deeplink
Browse files Browse the repository at this point in the history
  • Loading branch information
kamgurgul committed Feb 4, 2025
1 parent 565fe66 commit b6a80a6
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions androidApp/src/androidMain/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,17 @@
<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="kgurgul.com" />
<data android:path="/assets/cpuinfo" />
</intent-filter>

</activity>

<activity
Expand Down

0 comments on commit b6a80a6

Please sign in to comment.