Initialization

Follow

The ARGO SDK must be configured in your android.app.Application class using the com.bear.common.sdk.BearSdk class.

public class App Application {
    @Override
    public void onCreate() {
        super.onCreate();
        BearSdk.getInstance(this).init("ノ");
    }
}

You must call the BearSdk.init method using a secret key as parameter. You can check the sample app and use its secret key during your development cycle. However you must use your own secret key before submitting your application to production (this secret key will be provided by ARGO).

Was this article helpful?
0 out of 0 found this helpful

Comments

0 comments

Please sign in to leave a comment.