Skip to content

Commit

Permalink
fix: 打开 问题反馈 错误
Browse files Browse the repository at this point in the history
  • Loading branch information
lisonge committed Oct 16, 2023
1 parent 93d2a7f commit 90d7b3e
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions app/src/main/java/li/songe/gkd/ui/SettingsPage.kt
Original file line number Diff line number Diff line change
Expand Up @@ -186,11 +186,15 @@ fun SettingsPage() {
})
Divider()
SettingItem(title = "问题反馈", onClick = {
context.startActivity(
Intent(
Intent.ACTION_VIEW, Uri.parse("https://github.com/gkd-kit/gkd")
appScope.launchTry(Dispatchers.IO) {
// ActivityNotFoundException
// https://bugly.qq.com/v2/crash-reporting/crashes/d0ce46b353/117002?pid=1
context.startActivity(
Intent(
Intent.ACTION_VIEW, Uri.parse("https://github.com/gkd-kit/gkd")
)
)
)
}
})
Divider()
SettingItem(title = "分享日志", onClick = {
Expand Down

0 comments on commit 90d7b3e

Please sign in to comment.