## Receiving Dynamic Link
https://firebase.google.com/docs/dynamic-links/android/receive
Modify from yoursite.example.com to your own dynamic link like example.page.link
```
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
<data android:host="yoursite.example.com" android:scheme="http"/>
<data android:host="yoursite.example.com" android:scheme="https"/>
</intent-filter>
```
## Throwing mail with action
https://firebase.google.com/docs/auth/web/passing-state-in-email-actions
Modify from com.example.android to your own package name
```
var actionCodeSettings = {
url: 'https://www.example.com/?email=' + firebase.auth().currentUser.email,
iOS: {
bundleId: 'com.example.ios'
},
android: {
packageName: 'com.example.android',
installApp: true,
minimumVersion: '12'
},
handleCodeInApp: true
};
firebase.auth().currentUser.sendEmailVerification(actionCodeSettings)
.then(function() {
// Verification email sent.
})
.catch(function(error) {
// Error occurred. Inspect error.code.
});
```
## Need to put google-services.json which you can download from console on andoid/app directory