i want to create a deep link when user press a share button i share a link like this--(example url) https://www.myapp.com/Home_page (I had purchased a domain and my app is also available on play store) and want when user click on this link they should be redirected to the Home_page activity of my app but as i click page not found is displayed.
my code for manifest is:-
<activity
android:name="com.rakuso.earningadds.Activities.Home_page"
android:configChanges="orientation|screenSize|keyboardHidden">
<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="http://"
android:host="www.myapp.com"
android:pathPrefix="/Home_page"></data>
</intent-filter>
</activity>
now i cant understand what should i do