File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed
java/me/weishu/kernelsu/ui/screen Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -590,6 +590,7 @@ fun ModuleItem(
590590 horizontalArrangement = Arrangement .SpaceBetween ,
591591 ) {
592592 val moduleVersion = stringResource(id = R .string.module_version)
593+ val moduleId = stringResource(id = R .string.module_id)
593594 val moduleAuthor = stringResource(id = R .string.module_author)
594595
595596 Column (
@@ -612,6 +613,14 @@ fun ModuleItem(
612613 textDecoration = textDecoration
613614 )
614615
616+ Text (
617+ text = " $moduleId : ${module.id} " ,
618+ fontSize = MaterialTheme .typography.bodySmall.fontSize,
619+ lineHeight = MaterialTheme .typography.bodySmall.lineHeight,
620+ fontFamily = MaterialTheme .typography.bodySmall.fontFamily,
621+ textDecoration = textDecoration
622+ )
623+
615624 Text (
616625 text = " $moduleAuthor : ${module.author} " ,
617626 fontSize = MaterialTheme .typography.bodySmall.fontSize,
Original file line number Diff line number Diff line change 4343 <string name =" module_uninstall_success" >%s uninstalled</string >
4444 <string name =" module_uninstall_failed" >Failed to uninstall: %s</string >
4545 <string name =" module_version" >Version</string >
46+ <string name =" module_id" >Module ID</string >
4647 <string name =" module_author" >Author</string >
4748 <string name =" refresh" >Refresh</string >
4849 <string name =" show_system_apps" >Show system apps</string >
You can’t perform that action at this time.
0 commit comments