Reputation: 1
how to fix this warning?
Warning: Mapping new ns http://schemas.android.com/repository/android/co mmon/02 to old ns http://schemas.android.com/repository/android/common/0 1
Upvotes: 0
Views: 167
Reputation: 557
I think the issue is related to buildToolsVersion
. Try downgrading its version:
compileSdkVersion
, change buildToolsVersion("30.0.3")
to buildToolsVersion("30.0.2")
If you don't find any buildToolsVersion
inside your gradle file, please add it. (It uses the new version by default).
Upvotes: 1