Skip to content

Commit

Permalink
Merge pull request #939 from acrown-msft/updateESVersion
Browse files Browse the repository at this point in the history
Fix #933 - Update the Embedded Social SDK version to 0.7.2
  • Loading branch information
barbeau authored Nov 30, 2018
2 parents f6277f1 + 47492b4 commit b57e2b9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions onebusaway-android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -449,8 +449,8 @@ dependencies {
// Amazon Maps (only for Amazon flavor)
amazonImplementation 'com.amazon.android:amazon-maps-api:2.0'
// Embedded Social SDK
implementation('com.acrowntest.test:sdk:0.7.1:release@aar') {
transitive = true;
implementation('com.acrowntest.test:sdk:0.7.2:release@aar') {
transitive = true
}
// Required to support multidex for minSdkVersion <= 20
implementation 'androidx.multidex:multidex:2.0.0'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,7 @@ private void reportAnalytics() {
private void setUpSocial() {
if (EmbeddedSocialUtils.isBuildVersionSupportedBySocial() &&
EmbeddedSocialUtils.isSocialApiKeyDefined()) {
EmbeddedSocial.init(this, R.raw.embedded_social_config, BuildConfig.EMBEDDED_SOCIAL_API_KEY);
EmbeddedSocial.init(this, R.raw.embedded_social_config, BuildConfig.EMBEDDED_SOCIAL_API_KEY, null);
EmbeddedSocial.setReportHandler(new SocialReportHandler());
EmbeddedSocial.setNavigationDrawerHandler(new SocialNavigationDrawerHandler());
EmbeddedSocial.setAppProfile(new SocialAppProfile());
Expand Down

0 comments on commit b57e2b9

Please sign in to comment.