1. 程式人生 > 其它 >Android異常捕獲上傳

Android異常捕獲上傳

技術標籤:android

用過騰訊的框架,延遲啊,遺漏啊各種問題,真的是瞎折騰弄髒程式碼,還得自己寫,多簡單啊

class MyApplication : Application() {
    override fun onCreate() {
        super.onCreate()
        Thread.setDefaultUncaughtExceptionHandler { _, e ->
            //e.printStackTrace()
            //直接調上傳介面,也不用存到本地了,多餘,再拼接機型之類的資訊
            Log.i("ex", "捕獲到一個異常") }
    }