Vardan Baliyan
Vardan Baliyan

Reputation: 1

I am new to android development. I am making my first app but I am getting an error:

Error: ' ' is not a valid file-based resource name character: File-based resource names must contain only lowercase a-z, 0-9, or underscore at com.android.ide.common.resources.MergingException$Builder.build(MergingException.java:152)

enter image description here

Upvotes: 0

Views: 104

Answers (1)

Chris
Chris

Reputation: 186

You named your icon: ic_launcher_background 2.xml White spaces are not allowed as name of files. Try changing it to: ic_launcher_background_2.xml

Hope this helped.

Upvotes: 1

Related Questions