* add ext info to crashlog * add unofficial to crashlog too * update to have header include unofficial too * after ktlintFormat * Clean up debug info output --------- Co-authored-by: arkon <eugcheung94@gmail.com> (cherry picked from commit 0bdd3f79d4d14318ba8110748c6d39484c6d446b) # Conflicts: # app/src/main/java/eu/kanade/tachiyomi/util/CrashLogUtil.kt
78 lines
3.0 KiB
Kotlin
78 lines
3.0 KiB
Kotlin
package eu.kanade.tachiyomi.util
|
|
|
|
import android.content.Context
|
|
import android.os.Build
|
|
import eu.kanade.tachiyomi.BuildConfig
|
|
import eu.kanade.tachiyomi.extension.ExtensionManager
|
|
import eu.kanade.tachiyomi.util.storage.getUriCompat
|
|
import eu.kanade.tachiyomi.util.system.WebViewUtil
|
|
import eu.kanade.tachiyomi.util.system.createFileInCacheDir
|
|
import eu.kanade.tachiyomi.util.system.toShareIntent
|
|
import eu.kanade.tachiyomi.util.system.toast
|
|
import exh.syDebugVersion
|
|
import tachiyomi.core.util.lang.withNonCancellableContext
|
|
import tachiyomi.core.util.lang.withUIContext
|
|
import uy.kohesive.injekt.Injekt
|
|
import uy.kohesive.injekt.api.get
|
|
|
|
class CrashLogUtil(
|
|
private val context: Context,
|
|
private val extensionManager: ExtensionManager = Injekt.get(),
|
|
) {
|
|
|
|
suspend fun dumpLogs() = withNonCancellableContext {
|
|
try {
|
|
val file = context.createFileInCacheDir("tachiyomi_crash_logs.txt")
|
|
|
|
file.appendText(getDebugInfo() + "\n\n")
|
|
getExtensionsInfo()?.let { file.appendText("$it\n\n") }
|
|
|
|
Runtime.getRuntime().exec("logcat *:E -d -f ${file.absolutePath}").waitFor()
|
|
|
|
val uri = file.getUriCompat(context)
|
|
context.startActivity(uri.toShareIntent(context, "text/plain"))
|
|
} catch (e: Throwable) {
|
|
withUIContext { context.toast("Failed to get logs") }
|
|
}
|
|
}
|
|
|
|
fun getDebugInfo(): String {
|
|
return """
|
|
App version: ${BuildConfig.VERSION_NAME} (${BuildConfig.FLAVOR}, ${BuildConfig.COMMIT_SHA}, ${BuildConfig.VERSION_CODE}, ${BuildConfig.BUILD_TIME})
|
|
Preview build: $syDebugVersion
|
|
Android version: ${Build.VERSION.RELEASE} (SDK ${Build.VERSION.SDK_INT}; build ${Build.DISPLAY})
|
|
Device brand: ${Build.BRAND}
|
|
Device manufacturer: ${Build.MANUFACTURER}
|
|
Device name: ${Build.DEVICE} (${Build.PRODUCT})
|
|
Device model: ${Build.MODEL}
|
|
WebView: ${WebViewUtil.getVersion(context)}
|
|
""".trimIndent()
|
|
}
|
|
|
|
private fun getExtensionsInfo(): String? {
|
|
val availableExtensions = extensionManager.availableExtensionsFlow.value.associateBy { it.pkgName }
|
|
|
|
val extensionInfoList = extensionManager.installedExtensionsFlow.value
|
|
.sortedBy { it.name }
|
|
.mapNotNull {
|
|
val availableExtension = availableExtensions[it.pkgName]
|
|
val hasUpdate = (availableExtension?.versionCode ?: 0) > it.versionCode
|
|
|
|
if (!hasUpdate && !it.isObsolete && !it.isUnofficial) return@mapNotNull null
|
|
|
|
"""
|
|
- ${it.name}
|
|
Installed: ${it.versionName} / Available: ${availableExtension?.versionName ?: "?"}
|
|
Obsolete: ${it.isObsolete} / Unofficial: ${it.isUnofficial}
|
|
""".trimIndent()
|
|
}
|
|
|
|
return if (extensionInfoList.isNotEmpty()) {
|
|
(listOf("Problematic extensions:") + extensionInfoList)
|
|
.joinToString("\n")
|
|
} else {
|
|
null
|
|
}
|
|
}
|
|
}
|