Joshua Hight
Joshua Hight
> macOS requires a legacy version of Java (Java 6) in order for the JNI to work. pretty sure that's not right, I recently (last job) built a java application...
definitely to do with how you're instantiating the jvm, if you double click a `.class` file or some equivalent mac pops up that stupid message
I think the first way I got it to work outside Intellij was to build an app with platypus since apple doesn't like for any java thing to be the...
[this](https://stackoverflow.com/questions/30695291/linking-with-a-windows-library-outside-the-build-folder) stack overflow post gets it to build (if you make sure you have the right target for your machine) and adding the location of jvm.dll to PATH gets it...
so I inserted this into my cargo config (%USERPROFILE%/.cargo/config) ``` [target.x86_64-pc-windows-msvc.jvm] rustc-link-lib = ["jvm"] rustc-link-search = ["C:/Program Files/Java/jdk1.8.0_161/lib"] root = "C:/Program Files/Java/jdk1.8.0_161/lib" ``` changed the Cargo.toml to this ``` [package]...
@nitram22 mind taking a look when you have a minute?
@ajredniwja executed with latest aws sdk version (2.1233.0) and got the same issue: ``` 2022-10-16T21:47:14.067Z 43deff7b-1cc0-496c-aee4-539207bfa94c ERROR Invoke Error { "errorType": "UnexpectedParameter", "errorMessage": "Unexpected key 'videoGenerator' found in params.Settings.Inputs[0]", "code":...
looks like the member shape for this expects PascalCase `"VideoGenerator": { Duration: 1000 }` and not camelCase, though both are allowable when directly creating through the console, changing to PascalCase...