We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Getting some lint errors because of auto generated log tags in generated subclasses because of long class names.
Would be nice to cut longer names to max 23 chars to comply with android lint.
Here's an example:
if (context_ instanceof ActionBarActivity) { activity = ((ActionBarActivity) context_); } else { Log.w("ActivityActionBarHelper_", (("Due to Context class "+ context_.getClass().getSimpleName())+", the @RootContext ActionBarActivity won't be populated")); }
Getting some lint errors because of auto generated log tags in generated subclasses because of long class names.
Would be nice to cut longer names to max 23 chars to comply with android lint.
Here's an example: