com.dropbox.core.DbxSdkVersion Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dropbox-core-sdk Show documentation
Show all versions of dropbox-core-sdk Show documentation
Official Java client library for the Dropbox API.
package com.dropbox.core;
/*>>> import checkers.nullness.quals.Nullable; */
public class DbxSdkVersion
{
public static final String Version;
static {
Version = loadVersion();
}
// https://github.com/dropbox/dropbox-sdk-java/issues/357
private static String loadVersion()
{
return "5.1.1";
}
}