error running the app in android studio: "is not valid file-based resource name character"

2

good simply the app did not want to run anymore, and this is the code that comes out, and try to REMOVE all the fragments (that's what I did and still nothing)

Error:Error: 'C' is not a valid file-based resource name character: File-based resource names must contain only lowercase a-z, 0-9, or underscore
Error:Execution failed for task ':app:mergeDebugResources'.
> C:\Users\erny\AndroidStudioProjects\OrganizadorJEC\app\src\main\res\layout\fragment_Calendario.xml: Error: 'C' is not a valid file-based resource name character: File-based resource names must contain only lowercase a-z, 0-9, or underscore

    
asked by ERny JOsé HIdalgo COrrea 05.12.2016 в 21:56
source

1 answer

5

Your error message specifies the problem:

  

Error: Error: 'C' is not valid file-based resource name character:   File-based resource names must contain only lowercase a-z, 0-9, or   underscore

Your resources should contain names with lowercase letters with characters from "a" to "z", may contain numeric characters from "0" to "9", and underscore , rename your layout :

fragment_Calendario.xml 

a

fragment_calendario.xml 

Check also if you have more resources named incorrectly in addition to this layout to avoid problems.

    
answered by 05.12.2016 / 23:16
source