Skip to content

Commit

Permalink
MUIC-552: [Android] - CR - fixes
Browse files Browse the repository at this point in the history
getApiToken public method returned
version code set to 1.6.8
  • Loading branch information
deniss-mc committed Nov 4, 2021
1 parent 1a0ece3 commit a122c79
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion widgetssdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ android {
minSdkVersion 24
targetSdkVersion 30
versionCode 13
versionName "1.7.8"
versionName "1.6.8"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles "consumer-rules.pro"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,15 @@ public String getRegion() {
return region;
}

/**
* @deprecated API token is no longer needed for SDK to function correctly.
* Deprecated since SDK version 1.6.5
*/
@Deprecated
public String getApiToken() {
return null;
}

public int getRequestCode() {
return requestCode;
}
Expand Down

0 comments on commit a122c79

Please sign in to comment.