In my AndroidManifest.xml i have a warning in the line code below.
<service android:name=".Helper.LocationService"/>
The warning is:
Inner classes should use $ rather than . When you reference an inner class in a manifest file, you must use '$' instead of '.' as the separator character, i.e. Outer$Inner instead of Outer.Inner.
So, Why use '$' instead of '.', if when I use '.' still works?