manager: Update agp version

- Fix bug caused by SuSFS configuration screen returning too quickly
This commit is contained in:
ShirkNeko
2025-07-11 10:56:30 +08:00
parent 9f706873f2
commit bd6eb7fddd
2 changed files with 7 additions and 2 deletions

View File

@@ -192,6 +192,8 @@ fun SuSFSConfigScreen(
var selectedBackupFile by remember { mutableStateOf<String?>(null) }
var backupInfo by remember { mutableStateOf<SuSFSManager.BackupData?>(null) }
var isNavigating by remember { mutableStateOf(false) }
val allTabs = SuSFSTab.getAllTabs(isSusVersion_1_5_8())
// 实时判断是否可以启用开机自启动
@@ -839,7 +841,10 @@ fun SuSFSConfigScreen(
},
navigationIcon = {
IconButton(onClick = {
if (!isNavigating) {
isNavigating = true
navigator.popBackStack()
}
}) {
Icon(
imageVector = Icons.AutoMirrored.Filled.ArrowBack,

View File

@@ -1,6 +1,6 @@
[versions]
accompanist-drawablepainter = "0.37.3"
agp = "8.11.0"
agp = "8.11.1"
gson = "2.13.1"
kotlin = "2.1.21"
ksp = "2.1.21-2.0.1"