You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The second problem I ran into is that your sample code uses ImmutableMap which changed with the newer versions of the guava.
Could you change the code to use a simple HashMap instead?
Also, it would be great to have a working Java example project that we can run right away.
The text was updated successfully, but these errors were encountered:
I followed the Java tutorial to get things running with Segment, but I got some errors, and it's still not working.
The first one was because newer Gradle versions support the
implementation
keyword instead ofcompile
for defining dependencies.You have this in your docs:
...but it's deprecated: https://docs.gradle.org/6.9.1/userguide/upgrading_version_5.html#dependencies_should_no_longer_be_declared_using_the_compile_and_runtime_configurations
The second problem I ran into is that your sample code uses
ImmutableMap
which changed with the newer versions of the guava.Could you change the code to use a simple HashMap instead?
Also, it would be great to have a working Java example project that we can run right away.
The text was updated successfully, but these errors were encountered: