forked from organicmaps/organicmaps
* [android] Fix lint warnings for intent-filters > 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> |
||
---|---|---|
.. | ||
assets | ||
flavors | ||
gradle/wrapper | ||
jni | ||
res | ||
script | ||
src | ||
tests | ||
.gitignore | ||
AndroidManifest.xml | ||
build.gradle | ||
code_style_scheme.xml | ||
debug.keystore | ||
gradle.properties | ||
gradlew | ||
gradlew.bat | ||
HOW_TO_USE_GRADLE.txt | ||
ic_launcher-playstore.png | ||
multidex-config.txt | ||
proguard-mwm.txt |