Implement custom data types

How should I export a custom Renderer type that is used for expression in the debugger for a specific type? Should I export it as a plugin or just a jar that will only contain classes that need to be referenced in the Android Studio directory?

I built it using the Idea SDK and as a plug-in module, but so far I am not using any packages, not JDK packages. I tried to export it as a plugin and install it from disk, however I cannot use classes in expressions. This is not documented in the open sdk documentation in any way.

+5
source share
1 answer

I recreated the module as a Java application module. The Main class has remained empty. Exported an artifact and moved the jar to the Android SDK path, exactly in \sdk\sources\android-23\java . Now I can see the classes at the end in the expression text box:

` shot

0
source

Source: https://habr.com/ru/post/1237839/


All Articles