android - How to suppress this warning in AndroidManifest -
i have 1 line in androidmanifest.xml produces warning , can't fix :
<activity android:name="com.paypal.android.mep.paypalactivity" />
i have following warning : use '$' instead of '.' inner classes (or use lowercase letters in package names)
the problem if replace .
$
, class won't work , i'll activitynotfoundexception
. i've read lints in android couldn't find 1 need.
could tell me how can fix ? in advance.
the lint rule called innerclassseparator
. in correctness
category.
Comments
Post a Comment