モバイルアプリでキャンペーン変数を設定する方法
Android モバイルアプリでのキャンペーン変数(トラッキングコード)の設定

目的

Android モバイルアプリでキャンペーン変数(トラッキングコード)を設定します。

環境

Adobe Mobile Services
Android

手順

キャンペーン変数を設定するには、コンテキストデータキーを「&&campaign」に設定し、キャンペーン変数に定義されている構文を使用して値を設定します:

cdata.put("&&campaign", "App Campaign");

次に例を示します:

//create a context data dictionary
HashMap cdata = new HashMap<String, Object>();

// Note the special syntax for Campaign
cdata.put("&&campaign", "App Campaign");

// print the output
System.out.println("Campaign value");