import { ExtLink } from '../ExtLink'; import { Ruby } from '../Ruby'; import { useId } from 'react'; import { RootExplorerGuide } from './RootExplorerGuide'; import { AdbInstructionTemplate } from './AdbInstructionTemplate'; import { HiWord } from '../HelpText/HiWord'; export interface AndroidADBPullInstructionProps { dir: string; file: string; } const URL_AMAZE = 'https://github.com/TeamAmaze/AmazeFileManager/releases/latest'; const URL_MT2 = 'https://mt2.cn/download/'; export function AndroidADBPullInstruction({ dir, file }: AndroidADBPullInstructionProps) { const androidInstructionId = useId(); return ( <>

你需要超级管理员访问权限来访问安卓应用的私有数据。

⚠️ 请注意,获取管理员权限通常意味着你的安卓设备 将失去保修资格

在安卓手机端操作
  1. 启动支持 root 特权的文件浏览器,如 Amaze 文件浏览器MT 管理器 等。
  2. ※ 记得启用 root 特权!
  3. 访问 {dir}/ 目录。

    ※ 从侧边栏选择根目录开始。

  4. 将文件 {file} 复制到浏览器可访问的目录(例如下载目录)。
  5. 提交该数据库文件。
在 PC 端操作(使用 ADB / PowerShell)
在 Linux / Mac 系统下操作(使用 ADB / Shell)
); }