All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.dropbox.client2.SdkVersion Maven / Gradle / Ivy

Go to download

The Dropbox API for Java is a Dropbox supported client library for accessing the JSON+REST interface to Dropbox. It supports OAuth proxied authentication. It is designed to be simple and easy to use, as well as instructional in case you want to write your own. It is MIT licensed.

The newest version!
package com.dropbox.client2;

/**
 * Contains the SDK verison number.
 */
public final class SdkVersion {

    /** Returns the SDK version number. */
    public static String get() {
        return "1.5.3";  // Filled in by build process.
    }

    public static void main(String[] args) {
        System.out.println("Dropbox Java SDK, Version " + get());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy