Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

java

android

Error:

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

 <?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<alpha
    android:duration="2000"
    android:fromAlpha="0.0"
    android:toAlpha="1.0"
    android:interpolator="@android:anim/accelerate_interpolator" />
</set>

Where is the mistake? I do not see

like image 638
Cvele Avatar asked Feb 22 '16 00:02

Cvele


1 Answers

The error is not in the XML code but in the filename. Check the filenames in your res directories! Seems like one of the files has a capital 'F' in its filename.

like image 72
prograde Avatar answered Nov 12 '22 14:11

prograde