Releases: bazaarvoice/bv-android-sdk
Releases · bazaarvoice/bv-android-sdk
BVSDK 4.0.0 (Ads Update)
Advertising
- New changes to the BVAds class that require some minor code changes to migrate from 3.x to 4.x
- Ads interface removed, instead simply use the BVAds class directly
Map<String, String> getCustomTargeting()
is the only method available now throughBVAds.getCustomTargeting()
\- The methods creating Google DFP ad objects can now just be called by directly invoking the Google DFP API,
e.g.getTargetedInterstitialAd(Context context, String adUnitId)
becomesPublisherInterstitialAd interstitialAd = new PublisherInterstitialAd(context); interstitialAd.setAdUnitId(adUnitId);
- New Support for Bazaarvoice Curations: Ability to display custom social media feeds and post photos from your mobile app. Checkout the example project
- New BVPixel - Analytics for tracking purchase and non-transaction events for ROI reporting and omnichannel profile
- Added usage pattern for BVRecommendations for fetching and displaying product recommendations
- Removed SDK dependency on Google DFP SDK. Existing clients can now more easily add 1st party data to DFP add requests.
BVSDK 3.2.1 (Bugfix http)
General Changes
- Fix for closing out all OkHttp ResponseBody objects
BVSDK 3.2.0 (Recommendations UI)
3.2.0
Product Recommendations
- Added
RecommendationView
to wrap a view displaying a singleBVProduct
and provide better ROI reporting and recommendations
without the need to manually send off analytic events to Bazaarvoice - Added
RecommendationsContainerView
,RecommendationsListView
,RecommendationsGridView
, andRecommendationsRecyclerView
to display manyRecommendationView
s, and provide additional ROI reporting and better recommendations
BVSDK 3.1.0 (iovation support)
Conversations
- Added iovation support to BazaarRequest#postSubmission(RequestType type, BazaarParams params, OnBazaarResponse listener)
BVSDK 3.0.1 (Unified SDK)
Product Recommendations
- New Module - In BETA, provides targeted shopper recommendations
Advertising
- New Module - Targeted Google DFP Ads with Bazaarvoice profiles. Replaces the deprecated bv-android-ads-sdk
Conversations
- Deprecated BazaarRequest constructor requiring parameters, in favor of
new no parameter constructor- Support for Hosted Auth has been added. In SubmissionParams.java see,
- SubmissionParams#setHostedAuthCallbackUrl(String hostedAuthCallbackUrl)
- SubmissionParams#setHostedAuthEmail(String hostedAuthEmail)
- Support for Hosted Auth has been added. In SubmissionParams.java see,
General Changes
- Added sample app to demonstrate the 3 different modules
- Can now install artifacts from Maven Central