Demo App

Using the VWO demo app, you can try Mobile App A/B testing.
To try the demo app, you will need ApiKey.

Installation

git clone https://github.com/wingify/vwo-react-native-demo
cd vwo-react-native-demo
npm install

iOS

cd iOS
pod install
react-native run-ios

Android

react-native run-android

Enter ApiKey

You need to add an app to your VWO account. Please refer to Adding an App for details.
Copy your ApiKey.
Run the app from Android Studio/Xcode.

After the app is running, click the Menu icon in the upper-left corner.

750

Select Enter API Key from the menu options and then type your API key.

Sorting Campaign

Showing a list of items is a common requirement for many apps.
How do you know what sequence is better? What better way to tell than to A/B test!

Defining Variation

Steps to run Sorting Campaign:

  1. Under Mobile App A/B, click Create Menu and then choose your App, platform and set test key to "sorting". Click Next for Variations screen.
  2. On the Variations screen, update the variation names as seen in the image below
1364

In your app, click the Refresh icon located in the upper-right corner of the navigation bar.
This should change the sequence of items. Items are now sorted by price

750

Following code handles the A/B testing for Sorting campaign

sortPhoneList = async () => {
  var newList = phoneList
  const variation = await VWO.variationNameForTestKey("sorting")
  if (variation == "Sort-Alphabetically") {
    newList.sort(function(a,b) {
      return ((a.name > b.name) ? 0 : -1 );
    });
  } else if (variation == "Sort-By-Price") {
    newList.sort(function(a,b) {
      return ((a.price > b.price) ? 0 : -1 );
    });      
  }
  this.setState({ phones: newList })
}

The code above does following things

  1. Get the variation name for campaign whose test key is "sorting"
  2. Depending on the variation name we decide if the sorting is to be done alphabetically or by price
  3. Once the list is sorted we reload the table data

Defining Goals

Click Next, and then define a goal using the following goal identifier.

We can see if the goals work correctly.
Click Verify.

1292

Select your device from the drop-down menu.

1230

On selecting any product (phone) from the list, you can see the product details.

750

When you select the product, Goal 1 becomes Verified.

1224

This happens because, we have placed VWO.trackConversion( "productView") code upon selecting a product.

If you want to verify the goal for variation, select Variation from the drop-down menu, select refresh in the app, and then repeat the same process.

Finalize Campaign

Click Next to move to the final stage of campaign creation. You can set percentage traffic allocation and then do advance targeting.

To start the campaign, click Finish.

Variable Campaign

How do you know what content would appeal to your users
This campaign helps us test various alerts by presenting various titles and content

Defining Variation

Steps to run Layout Campaign:

  1. Under Mobile App A/B, click Create and then choose your mobile app.
  2. In the Variations screen, create variable named heading and content of String type
  3. Set the values accordingly
  4. You can use the code generated on right side
1812

After creating the variables add them to your campaign and set values accordingly

1364

Select your device from the options(three dots), and then select Preview on Device.

1232

In your app, click on any house in the list and you can verify the look and feel of all the variation
The variation section of the demo app will change.

750

Defining Goals

Click Next and then define a goal using the following goal identifier.

We can see if goals work correctly.
Click Verify.

1330

From the device drop-down menu, select your device.

1228

When you tap on upgrade button in the alert, the goal will get verified

1228

This happens because , we have placed VWO.markConversionFor(goal: "upgrade-clicked") code on tapping the upgrade button.

If you want to verify the goal for the variation, select Variation from the Control drop-down menu and then tap on Upgrade button in alert

Finalize Campaign

To move to the final stage of campaign creation, click Next. Now, you can set percentage traffic allocation and perform advance targeting.

To start the campaign, click Finish.