Search in sources :

Example 1 with SasquatchDistributeListener

use of com.microsoft.appcenter.sasquatch.listeners.SasquatchDistributeListener in project mobile-center-sdk-android by Microsoft.

the class MainActivity method onCreate.

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    sSharedPreferences = getSharedPreferences("Sasquatch", Context.MODE_PRIVATE);
    StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder().detectDiskReads().detectDiskWrites().build());
    StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder().detectAll().build());
    /* Set custom log URL if one was configured in settings. */
    String startType = sSharedPreferences.getString(APPCENTER_START_TYPE, StartType.APP_SECRET.toString());
    String logUrl = sSharedPreferences.getString(LOG_URL_KEY, getLogUrl(this, startType));
    if (!TextUtils.isEmpty(logUrl)) {
        AppCenter.setLogUrl(logUrl);
    }
    /* Set listeners. */
    AnalyticsPrivateHelper.setListener(getAnalyticsListener());
    Crashes.setListener(getCrashesListener());
    Distribute.setListener(new SasquatchDistributeListener());
    /* Set distribute urls. */
    String installUrl = getString(R.string.install_url);
    if (!TextUtils.isEmpty(installUrl)) {
        Distribute.setInstallUrl(installUrl);
    }
    String apiUrl = getString(R.string.api_url);
    if (!TextUtils.isEmpty(apiUrl)) {
        Distribute.setApiUrl(apiUrl);
    }
    /* Set crash attachments. */
    AttachmentsUtil.getInstance();
    /* Set max storage size. */
    setMaxStorageSize();
    /* Set debug enabled for distribute. */
    setDistributeEnabledForDebuggableBuild();
    /* Start App Center. */
    startAppCenter(getApplication(), startType);
    /* Set user id. */
    String userId = sSharedPreferences.getString(USER_ID_KEY, null);
    if (userId != null) {
        setUserId(userId);
    }
    /* Attach NDK Crash Handler after SDK is initialized. */
    Crashes.getMinidumpDirectory().thenAccept(new AppCenterConsumer<String>() {

        @Override
        public void accept(String path) {
            /* Path is null when Crashes is disabled. */
            if (path != null) {
                setupNativeCrashesListener(path);
            }
        }
    });
    /* Use some App Center getters. */
    AppCenter.getInstallId().thenAccept(new AppCenterConsumer<UUID>() {

        @Override
        public void accept(UUID uuid) {
            Log.i(LOG_TAG, "InstallId=" + uuid);
        }
    });
    /* Print last crash. */
    Crashes.hasCrashedInLastSession().thenAccept(new AppCenterConsumer<Boolean>() {

        @Override
        public void accept(Boolean crashed) {
            Log.i(LOG_TAG, "Crashes.hasCrashedInLastSession=" + crashed);
        }
    });
    Crashes.getLastSessionCrashReport().thenAccept(new AppCenterConsumer<ErrorReport>() {

        @Override
        public void accept(ErrorReport data) {
            if (data != null) {
                Log.i(LOG_TAG, "Crashes.getLastSessionCrashReport().getStackTrace()=" + data.getStackTrace());
            }
        }
    });
    /* Populate UI. */
    ((TextView) findViewById(R.id.package_name)).setText(String.format(getString(R.string.sdk_source_format), getPackageName().substring(getPackageName().lastIndexOf(".") + 1)));
    TestFeatures.initialize(this);
    ListView listView = findViewById(R.id.list);
    listView.setAdapter(new TestFeaturesListAdapter(TestFeatures.getAvailableControls()));
    listView.setOnItemClickListener(TestFeatures.getOnItemClickListener());
    /* Restore the MSA authentication callback. */
    String msaUserId = sSharedPreferences.getString(MSA_TOKEN_KEY, null);
    String refreshToken = sSharedPreferences.getString(MSA_REFRESH_TOKEN_KEY, null);
    String refreshTokenScope = sSharedPreferences.getString(MSA_REFRESH_TOKEN_SCOPE_KEY, null);
    int rawAuthType = sSharedPreferences.getInt(MSA_AUTH_TYPE_KEY, 0);
    if (msaUserId != null && refreshToken != null && refreshTokenScope != null) {
        AuthenticationProvider.Type mAuthType = AuthenticationProvider.Type.values()[rawAuthType];
        MSAAuthenticationProvider tokenProvider = MSAAuthenticationProvider.getInstance(refreshToken, refreshTokenScope, this);
        AuthenticationProvider provider = new AuthenticationProvider(mAuthType, msaUserId, tokenProvider);
        AnalyticsTransmissionTarget.addAuthenticationProvider(provider);
    }
}
Also used : MSAAuthenticationProvider(com.microsoft.appcenter.sasquatch.MSAAuthenticationProvider) AuthenticationProvider(com.microsoft.appcenter.analytics.AuthenticationProvider) MSAAuthenticationProvider(com.microsoft.appcenter.sasquatch.MSAAuthenticationProvider) SasquatchDistributeListener(com.microsoft.appcenter.sasquatch.listeners.SasquatchDistributeListener) TestFeaturesListAdapter(com.microsoft.appcenter.sasquatch.features.TestFeaturesListAdapter) SuppressLint(android.annotation.SuppressLint) ErrorReport(com.microsoft.appcenter.crashes.model.ErrorReport) StrictMode(android.os.StrictMode) ListView(android.widget.ListView) TextView(android.widget.TextView) UUID(java.util.UUID)

Aggregations

SuppressLint (android.annotation.SuppressLint)1 StrictMode (android.os.StrictMode)1 ListView (android.widget.ListView)1 TextView (android.widget.TextView)1 AuthenticationProvider (com.microsoft.appcenter.analytics.AuthenticationProvider)1 ErrorReport (com.microsoft.appcenter.crashes.model.ErrorReport)1 MSAAuthenticationProvider (com.microsoft.appcenter.sasquatch.MSAAuthenticationProvider)1 TestFeaturesListAdapter (com.microsoft.appcenter.sasquatch.features.TestFeaturesListAdapter)1 SasquatchDistributeListener (com.microsoft.appcenter.sasquatch.listeners.SasquatchDistributeListener)1 UUID (java.util.UUID)1