We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello! Using this library, I have the following exception when running my app on release:
Platform Exception (connection_failure, java.lang.ClassNotFoundException: com.jcraft.jsch.jce.Random, null, null)
The temporary fix for this is to set this on the build gradle:
minifyEnabled false shrinkResources false
I suspect proguard is removing some essential files when shrinking the app. Any guidance on what to add in proguard-rules.pro?
proguard-rules.pro
The text was updated successfully, but these errors were encountered:
@jda258 any updates or idea on this ticket without a tempory fix?
@raphasauer anything else you found? Thanks
Sorry, something went wrong.
I haven't had any progress. You probably want something like this in your proguard-rules.pro file:
-keep class org.videolan.libvlc.** { *; }
But keeping the classes related to flutter_ssh2. @jda258 can probably give you better guidance in how to do that.
I've got the same problem
No branches or pull requests
Hello! Using this library, I have the following exception when running my app on release:
Platform Exception (connection_failure, java.lang.ClassNotFoundException: com.jcraft.jsch.jce.Random, null, null)
The temporary fix for this is to set this on the build gradle:
I suspect proguard is removing some essential files when shrinking the app. Any guidance on what to add in
proguard-rules.pro
?The text was updated successfully, but these errors were encountered: