0

I have created a survey app which is creating dynamic Survey from android.What I want is when user create a survey and submit it by clicking button it create a link and send this link to me through sms or copy that link to my clipboard. and when I click that link it open a specific activity in my application. I know it can happen through deep linking but I want to get the link in sms or copy it in my clipboard.I dont want to get it in Website

Umair Iqbal
  • 1,959
  • 1
  • 19
  • 38

1 Answers1

0

you can define intent-filter for your maninifest file with your host

 <intent-filter>
      <data android:scheme="http" android:host="putyourdo.xyz"/>
      <action android:name="android.intent.action.VIEW"/>
      <category android:name="android.intent.category.BROWSABLE"/>
      <category android:name="android.intent.category.DEFAULT"/>
 </intent-filter>
Code Kadiya
  • 385
  • 1
  • 14