全部產品
Search
文件中心

Mobile Platform as a Service:抓取 UC 核心閃退

更新時間:Jul 26, 2024

UC 核心是 C 層原生代碼,抓取 UC 核心時需要提供 UCCrashSDK。安裝 UC 核心組件後,該 SDK 會自動安裝。

重要

此文檔僅用於已有 UC SDK 使用者調試及支援使用,由於產品策略變更,UC SDK 不再開放申請。

將 C 層閃退上報至移動分析後台還需要在 Manifest 檔案中加入對應的 receiver

<!--上報 native 閃退-->
  <receiver
    android:name="com.alipay.mobile.common.logging.process.LogReceiverInToolsProcess"
    android:enabled="true"
    android:exported="false"
    android:process=":tools">
    <intent-filter>
      <action android:name="${applicationId}.monitor.command"/>
    </intent-filter>
  </receiver>

  <receiver
    android:name="com.alipay.mobile.logmonitor.ClientMonitorWakeupReceiver"
    android:enabled="true"
    android:exported="false"
    android:process=":push">
    <intent-filter>
      <action android:name="${applicationId}.push.action.CHECK" />
      <action android:name="${applicationId}.monitor.command" />
    </intent-filter>
  </receiver>
重要

使用 UC 核心閃退 SDK,會有網路請求向 UC 進行鑒權。更多內容參見 引用第三方服務資料說明