Henry Peterson
I am a passionate programmer and a clean code evangelist who mainly likes to create Android apps and contribute to open source libraries. https://thsaravana.github.io/
- 活动总数 174
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 53
- 订阅数 45
-
已编辑于 Could not download uast from maven repository - 403 forbidden
已回答I am trying to download uast-1.0.12 dependency, but I keep getting the below error: Could not download uast-1.0.12.jar (org.jetbrains.uast:uast:1.0.12)Could not get resource 'https://dl.bintray.com... -
已编辑于 Listen to Gradle build event
已回答I want to run my plugin once the project (and all it's modules) are compiled. connection.subscribe(ProjectTaskListener.TOPIC, object : ProjectTaskListener {}) I used the above and it works when th... -
创建于 Access Output tag in NewModuleRootManager component in .iml file
已回答Below is a snippet of my .iml file of a module in my Android project: <?xml version="1.0" encoding="UTF-8"?><module external.linked.project.id=":xxxxxx" external.linked.project.path="$MODULE_DIR$" ... -
创建于 kotlin-classes missing in Module.classroots()
已回答I am trying to get the classroots of a given module. I use the below: OrderEnumerator.orderEntries(module).recursively().classesRoots I get all the classroots except "build/tmp/kotlin-classes". Thi... -
创建于 How to get hold of KotlinCompiler?
val compiler = ToolProvider.getSystemJavaCompiler()val diagnostics = DiagnosticCollector<JavaFileObject>()val fileManager: StandardJavaFileManager = compiler.getStandardFileManager(diagnostics, nul... -
创建于 Hook AnnotationProcessor in Project dynamically
已回答I am trying to write a plugin that can hook into the "annotationProcessor framework" in any given project. Let me explain in detail:In a gradle project, if we want to add an AnnotationProcessor as ... -
创建于 Add and Remove errors in EditorTextField
已回答I am using the following Custom EditorTextField inside a DialogWrapper: class CustomTextField(project: Project, s: String) : LanguageTextField(XmlLanguage.INSTANCE, project, s) { override fun cr... -
创建于 System.getenv() returns different value in Ultimate and Community Edition
已回答I wrote a plugin that fetching Environmental variable from the system. I am using Mac OS Sierra (10.12.6). 1. When I tested this by running (:runIde) it in Community Edition, it printed out the cor... -
已编辑于 Execute a Java method in Editor and show the result in Console
I am writing a plugin for Java/Kotlin projects for which I need the below functionality. Let's say I have a method like this in my editor: private void getPosition(String value, String input) { St... -
创建于 Adding "plugin on disk" as a dependency for another plugin
I have a plugin named "my-plugin". I have another plugin named "sample-plugin". I need to add "my-plugin" as a dependency to "sample-plugin". I went through the page https://www.jetbrains.org/intel...