> Data tags should only declare unique attributes
> Consider splitting data tag into multiple tags
> with individual attributes to avoid confusion
All the `<data>` elements contained within the same `<intent-filter>`
element contribute to the same filter. So, for example, the following
filter specification,
```
<intent-filter . . . >
<data android:scheme="something" android:host="project.example.com" />
. . .
</intent-filter>
```
is equivalent to this one:
```
<intent-filter . . . >
<data android:scheme="something" />
<data android:host="project.example.com" />
. . .
</intent-filter>
```
https://developer.android.com/guide/topics/manifest/data-element
Signed-off-by: Roman Tsisyk <roman@tsisyk.com>