What is the difference between given two namespace decalration in Android.
xmlns:app="http://schemas.android.com/tools"
and
xmlns:app="http://schemas.android.com/apk/res-auto"
I am getting lint warning on using http://schemas.android.com/tools => Suspicious namespace and prefix combination
I know using http://schemas.android.com/apk/res-auto will solve the issue, but want to know the reason behind it.