All Products
Search
Document Center

Mobile Platform as a Service:Mengambil Crash Kernel UC

Last Updated:Feb 07, 2026

Kernel UC adalah kode native lapisan-C. Gunakan UCCrashSDK untuk mengambil crash kernel UC. SDK ini secara otomatis diinstal saat Anda menginstal komponen kernel UC.

Penting

Dokumen ini ditujukan untuk debugging dan dukungan pengguna UC SDK yang telah ada. Karena perubahan kebijakan produk, permintaan baru untuk UC SDK tidak lagi diterima.

Anda dapat melaporkan crash lapisan-C ke Backend Mobile Analysis dengan menambahkan receiver yang sesuai ke file Manifest.

<!--Laporkan crash 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>
Penting

SDK crash kernel UC mengirim permintaan jaringan ke UC untuk autentikasi. Untuk informasi selengkapnya, lihat Referensi data layanan pihak ketiga.