armanim
armanim
The current iOS version does not handle intent data received as `UIImage`, thus the host app does not receive screenshot image data. The underlying issue is that the current version...
I figured out that it is the problem of handling intent data type. current version of `RSIShareViewController.swift` only handles intent data as `String` or `URL`, but ignoring the `UIImge`. So...
@rgrunber Thanks for your response! Unfortunately it didn't work for me. Looks like the class `ClasspathEntry` is responsible for configuration, however I didn't find out how to use it.
@rgrunber thanks for your patience. I am using [Monaco-languageclient](https://github.com/TypeFox/monaco-languageclient) for consumption, the file for `ClaspathEntry` is `org.eclipse.jdt.internal.core.ClasspathEntry`. How did I encounter this: I received error log messages from the client...
Init requst: ```json { "..." : "...", "params":{ "..." : "...", "initilizationOptions": { "settings": { "java": { "configuration": { "runtime": { "name": "JavaSE-11", "path": "/usr/lib/jvm/java-11-openjdk-amd64", "javadoc": "file:///usr/share/doc/openjdk-11-doc/api/", "default": true }...
I fixed the `runtime` and it looks like this now: ```json { "params":{ "initializationOptions":{ "settings": { "java": { "configuration": { "runtime": [ { "name": "JavaSE-17", "path": "/usr/lib/jvm/java-17-openjdk-amd64", "javadoc": "/usr/lib/jvm/java-17-openjdk-amd64/docs/api", "default":...
@snjeza I didn't find the `.classpath` file. I downloaded **jdtls** from eclipse snapshot repository: [jdtls](https://download.eclipse.org/jdtls/snapshots)
> > I didn't find the .classpath file. > > > > Could you check your project root directory or `/redhat.java/jdt_ws/.metadata/.plugins/org.eclipse.core.resources/.projects//.classpath` There are two `.classpath` files. _/jdt.ls.java.project/.classpath_ ``` ``` _/workspace-xxxx/.classpath_...
> Could you try the following: > > > > - stop your client > > - remove workspace-xxx > > - start your client the _workspace-xxx_ created again. And...