well, the app just didn't want to run anymore, and this is the code that comes out, I already tried to REDO 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
Your error message specifies the problem:
Your resources must contain names with lowercase letters with characters from "a" to "z", they can contain numeric characters from "0" to "9", and underscore , rename your layout:
a
Also check if you have more incorrectly named resources besides this layout to avoid problems.