Skip to content
This repository has been archived by the owner on Aug 9, 2021. It is now read-only.

Commit

Permalink
feat(application): make changes due to api change in mobile engage sdk
Browse files Browse the repository at this point in the history
  • Loading branch information
jpollak committed Jun 15, 2017
1 parent 995d9bf commit 4e80266
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
import com.emarsys.mobileengage.MobileEngage;
import com.emarsys.mobileengage.MobileEngageConfig;


public class SampleApplication extends Application {

private static final String TAG = "SampleApplication";
Expand All @@ -17,8 +16,9 @@ public void onCreate() {
Log.i(TAG, "Core version: " + com.emarsys.core.BuildConfig.VERSION_NAME);
Log.i(TAG, "MobileEngage version: " + com.emarsys.mobileengage.BuildConfig.VERSION_NAME);
MobileEngageConfig config = new MobileEngageConfig.Builder()
.application(this)
.credentials("14C19-A121F", "PaNkfOD90AVpYimMBuZopCpm8OWCrREu")
.build();
MobileEngage.setup(this, config);
MobileEngage.setup(config);
}
}

0 comments on commit 4e80266

Please sign in to comment.