The JunoWallet TEMA SDK
Create a user account at Flurry: http://www.flurry.com/dev/signup.html
integrate TEMA SDK
In your Application Delegate:
#import "JunoTaskController.h"
- (void)applicationDidFinishLaunching:(UIApplication *)application {
// AppleAppId example: 314477780
[JunoTaskController trackPayPerEngagement:AppStoreAppId];
}
Register the application as advertiser in the Flurry account
Test and activate the campaign.
Create a user account at Flurry: http://www.flurry.com/dev/signup.html
Integrate TEMA SDK
In your Application Activity:
import android.content.Context;
import com.junobe.android.tema.JunoTaskController;
public class Foo extends Activity {
public void onCreate(Bundle icicle) {
...
// 1. initialization
JunoTaskController.init((Context)this);
// 2.1 call trackPayPerEngagement with app id.
String applicationId = "12345678"; // example application id
JunoTaskController.trackPayPerEngagement(applicationId);
// 2.2 alternatively, specify event names to track
JunoTaskController.trackPayPerEngagement(applicationId, "testEvt");
...
}
}
Register the application as advertiser in the Flurry account.
Test and activate the campaign.