Releases: wingify/vwo-android
Releases · wingify/vwo-android
Version 2.3.1
Bug fixes
Version 2.3.0
Deprecated following functions:
com.vwo.mobile.VWO.setCustomVariable(String key, String value)
com.vwo.mobile.VWO.setOptOut(boolean optOut)
Use following instead:
// Config for adding custom user segmentation parameters before launch.
Map<String, String> userSegmentationMapping = new HashMap<>();
customKeys.put("userType", "free");
VWOConfig vwoConfig = new VWOConfig
.Builder()
.setCustomSegmentationMapping(userSegmentationMapping)
.setOptOut(true) // To opt out of VWO SDK.
.disablePreview() // To disable preview Mode.
.build();
VWO.with(Context, VWO_APP_KEY).config(vwoConfig).launch(null);
Version 2.2.0
Screen width, Screen height and Country based user Segmentation.
Deprecated:
getVariationForKey(String key)
Use the following function instead:
getVariationForKey(String key, Object default)
Deprecated
VWO.with(this, VWO_API_KEY).launch()
Use the following function instead:
VWO.with(this, VWO_API_KEY).launch(new VWOStatusListener() {
@Override
public void onVWOLoaded() {
// VWO loaded successfully
}
@Override
public void onVWOLoadFailure(String reason) {
// VWO not loaded
}
});
Version 2.1.0
Removed dependency on sentry.io
dependencies {
...
- compile 'com.vwo:mobile:2.0.2@aar'
+ compile 'com.vwo:mobile:2.1.0@aar'
debugCompile ('io.socket:socket.io-client:1.0.0') {
// excluding org.json which is provided by Android
exclude group: 'org.json', module: 'json'
}
- compile 'io.sentry:sentry-android:1.4.0'
// Skip this if you are already including support library in your app.
compile 'com.android.support:support-core-utils:27.0.2'
...
}
Version 2.0.2
Test cases with approx 80% coverage.
Bug fixes.
Improvements.
Version 2.0.1
Bug fixes and Improvements.
2.0.0 final release
v2.0.0 Updated demo app
Version 2.0.0-rc.4
- Changed markConversionForGoal API to trackConversion
- Added opt-out Functionality
Version 2.0.0-RC3
Proguard config fix
Version 2.0.0-RC2
Improvements