Skip to content

Commit

Permalink
Merge pull request #303 from doncung/UpdateVersion4.0.10
Browse files Browse the repository at this point in the history
Update version number to 4.0.10 also update user agent logic to track…
  • Loading branch information
doncung authored Jul 27, 2017
2 parents ec913a8 + 0ed75b2 commit 4182460
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions box-content-sdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ android {
defaultConfig {
minSdkVersion 14
targetSdkVersion 23
versionCode 40009
versionName "4.0.9" /* Update in BoxConfig.SDK_VERSION as well */
version "4.0.9"
versionCode 40010
versionName "4.0.10" /* Update in BoxConfig.SDK_VERSION as well */
version "4.0.10"
group "com.box"
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public static BoxCache getCache() {
/**
* Version string
*/
public static String SDK_VERSION = "4.0.9";
public static String SDK_VERSION = "4.0.10";

/**
* Optional paramater for whether authentication should use
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public class BoxSession extends BoxObject implements BoxAuthentication.AuthListe
private static final long serialVersionUID = 8122900496609434013L;

private static final transient ThreadPoolExecutor AUTH_CREATION_EXECUTOR = SdkUtils.createDefaultThreadPoolExecutor(1, 20, 3600, TimeUnit.SECONDS);
private String mUserAgent = "com.box.sdk.android";
private String mUserAgent = "com.box.sdk.android" + "/" + BoxConfig.SDK_VERSION;
private transient Context mApplicationContext = BoxConfig.APPLICATION_CONTEXT;
private transient BoxAuthentication.AuthListener sessionAuthListener;
private String mUserId;
Expand Down

0 comments on commit 4182460

Please sign in to comment.