Skip to content

Releases: wingify/vwo-android

Version 2.3.1

30 Apr 06:59
Compare
Choose a tag to compare

Bug fixes

Version 2.3.0

09 Apr 12:36
Compare
Choose a tag to compare

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

12 Mar 12:55
Compare
Choose a tag to compare

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

14 Feb 11:55
Compare
Choose a tag to compare

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

16 Jan 06:24
Compare
Choose a tag to compare

Test cases with approx 80% coverage.
Bug fixes.
Improvements.

Version 2.0.1

22 Dec 09:00
e1382a1
Compare
Choose a tag to compare

Bug fixes and Improvements.

2.0.0 final release

15 Dec 06:35
Compare
Choose a tag to compare
v2.0.0

Updated demo app

Version 2.0.0-rc.4

08 Dec 06:02
Compare
Choose a tag to compare
Version 2.0.0-rc.4 Pre-release
Pre-release
  • Changed markConversionForGoal API to trackConversion
  • Added opt-out Functionality

Version 2.0.0-RC3

13 Nov 12:06
Compare
Choose a tag to compare
Version 2.0.0-RC3 Pre-release
Pre-release

Proguard config fix

Version 2.0.0-RC2

09 Nov 09:20
Compare
Choose a tag to compare
Version 2.0.0-RC2 Pre-release
Pre-release

Improvements