I am working on an Android Studio project and ran into a problem when I tried to create a package that started with a capital letter (I forgot what it was at this point, but that's not the issue at hand). So I changed the package name from Adapters
to adapters
and now I can no longer compile.
I receive the following error message:
com.android.dx.cf.iface.ParseException: class name (com/example/android/myAppName/adapters/AccountAdapter$ViewHolder) does not match path (com/example/android/myAppName/Adapters/AccountAdapter$ViewHolder.class)
How can I change it so that it no longer tries to match the path with the capital A?