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.
Since AndroidAnnotations 3.0
The @HierarchyViewerSupport annotation allows you to use the HierarchyViewer inspection tool on any device.
@HierarchyViewerSupport
To use this annotation, your application must require the INTERNET permission and android:debuggable must be set to true in the AndroidManifest.xml.
android:debuggable
AndroidManifest.xml
Note that the usage is very simple, you just need to annotate your activity with @HierarchyViewerSupport :
@HierarchyViewerSupport @EActivity public class MyActivity extends Activity { }