Jolan Rensen

Results 439 comments of Jolan Rensen

Thanks for your response! And after sending this, do you automatically create a new connection/stream?

I mean this app https://play.google.com/store/apps/details?id=com.cgutman.androidremotedebugger. It's built using the plugin and features a ctrl+c option. I don't know how to send such a command myself though

Only the library is open source alas... I already left a message on his github

@guadaran Thanks for the tip, but for this you will need to get the current PID and that might be hard. I did read something about adb shell having an...

I think `outputs.upToDateWhen { false }` works! The java-comment-preprocessor folder gets regenerated after every clean. I'm not sure everything works yet since I've got some problems with Kotlin sources thinking...

Okay nice! It works :) thanks! For future reference, I'll put some examples for projects with Kotlin and Scala code (using gradle kts): ```kotlin val kotlinMainSources = kotlin.sourceSets.main.get().kotlin.sourceDirectories val preprocessMain...

As an update: It works better in Gradle! IntelliJ correctly uses JCP in multi module projects. The only downside is that a run/compile is needed to view code changes from...

One other thing I noticed is that IntelliJ incorrectly marks the source directories, making the project harder to work with. If I configure the project like [here](https://github.com/raydac/java-comment-preprocessor/issues/43#issuecomment-1168668626), I need to...

With the updated example, the folders are marked correctly, but IntelliJ still skips the preprocessing defined in gradle, instead opting for an incremental build :(

@raydac My current state: Inside the preprocess task: `outputs.upToDateWhen { target.get().exists() }` to make sure it rebuilds after a clean. But the only way I can get the compilation to...