Deep link app to be able to open from external source with ojo://view

This commit is contained in:
jayfan0 2024-01-17 19:11:44 +00:00
parent 0f13e23f09
commit 906698cf53

View File

@ -24,9 +24,13 @@
android:theme="@style/Theme.Ojo"> android:theme="@style/Theme.Ojo">
<intent-filter> <intent-filter>
<action android:name="android.intent.action.MAIN" /> <action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" /> <category android:name="android.intent.category.LAUNCHER" />
</intent-filter> </intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<data android:scheme="ojo" android:host="view"/>
</intent-filter>
</activity> </activity>
</application> </application>