├── .gitignore ├── .vscode └── settings.json ├── Axchange.xcodeproj └── project.pbxproj ├── Axchange.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ ├── IDEWorkspaceChecks.plist │ └── swiftpm │ └── Package.resolved ├── Axchange ├── Axchange.entitlements ├── Backend │ ├── AppDelegate.swift │ ├── AppModel.swift │ ├── Device │ │ ├── Device+Exec.swift │ │ ├── Device+File.swift │ │ ├── Device+Prop.swift │ │ └── Device.swift │ ├── Executor │ │ ├── Executor+ADB.swift │ │ ├── Executor+Ping.swift │ │ └── Executor.swift │ └── RemoteFile.swift ├── Extension │ ├── DispatchQueue.swift │ └── View.swift ├── Info.plist ├── Interface │ ├── DeviceFileView │ │ ├── DeviceFileView+Actions.swift │ │ ├── DeviceFileView+ControlBar.swift │ │ ├── DeviceFileView+Helper.swift │ │ ├── DeviceFileView+LogElement.swift │ │ ├── DeviceFileView+Menu.swift │ │ ├── DeviceFileView+Progress.swift │ │ ├── DeviceFileView+RowIcon.swift │ │ └── DeviceFileView.swift │ ├── LicenseView.swift │ ├── MainView.swift │ ├── SidebarView.swift │ ├── UnauthorizedView.swift │ └── WelcomeView.swift ├── Resources │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── icon-128.png │ │ │ ├── icon-128@2x.png │ │ │ ├── icon-16.png │ │ │ ├── icon-16@2x.png │ │ │ ├── icon-256.png │ │ │ ├── icon-256@2x.png │ │ │ ├── icon-32.png │ │ │ ├── icon-32@2x.png │ │ │ ├── icon-512.png │ │ │ └── icon-512@2x.png │ │ ├── Avatar.imageset │ │ │ ├── Contents.json │ │ │ └── icon.png │ │ └── Contents.json │ ├── InfoPlist.xcstrings │ └── Localizable.xcstrings └── main.swift ├── LICENSE ├── README.md ├── Resources ├── Download_on_the_App_Store_Badge_US-UK_RGB_blk_092917.svg ├── Preview.png ├── Privacy.md ├── i18n │ └── zh-Hans │ │ ├── Download_on_the_Mac_App_Store_Badge_CNSC_RGB_blk_092917.svg │ │ └── README.md └── icon.psd └── Scripts └── BuildADB ├── build-abseil-cpp.sh ├── build-android-tools.sh ├── build-brotli.sh ├── build-googletest.sh ├── build-lz4.sh ├── build-pcre2.sh ├── build-protobuf.sh ├── build-utf8_range.sh ├── build-zstd.sh ├── compile.sh ├── define.sh ├── make.sh └── prepare.source.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Axchange.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Axchange.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Axchange.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Axchange.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Axchange.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Axchange.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Axchange.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Axchange.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Axchange/Axchange.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Axchange/Axchange.entitlements -------------------------------------------------------------------------------- /Axchange/Backend/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Axchange/Backend/AppDelegate.swift -------------------------------------------------------------------------------- /Axchange/Backend/AppModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Axchange/Backend/AppModel.swift -------------------------------------------------------------------------------- /Axchange/Backend/Device/Device+Exec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Axchange/Backend/Device/Device+Exec.swift -------------------------------------------------------------------------------- /Axchange/Backend/Device/Device+File.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Axchange/Backend/Device/Device+File.swift -------------------------------------------------------------------------------- /Axchange/Backend/Device/Device+Prop.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Axchange/Backend/Device/Device+Prop.swift -------------------------------------------------------------------------------- /Axchange/Backend/Device/Device.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Axchange/Backend/Device/Device.swift -------------------------------------------------------------------------------- /Axchange/Backend/Executor/Executor+ADB.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Axchange/Backend/Executor/Executor+ADB.swift -------------------------------------------------------------------------------- /Axchange/Backend/Executor/Executor+Ping.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Axchange/Backend/Executor/Executor+Ping.swift -------------------------------------------------------------------------------- /Axchange/Backend/Executor/Executor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Axchange/Backend/Executor/Executor.swift -------------------------------------------------------------------------------- /Axchange/Backend/RemoteFile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Axchange/Backend/RemoteFile.swift -------------------------------------------------------------------------------- /Axchange/Extension/DispatchQueue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Axchange/Extension/DispatchQueue.swift -------------------------------------------------------------------------------- /Axchange/Extension/View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Axchange/Extension/View.swift -------------------------------------------------------------------------------- /Axchange/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Axchange/Info.plist -------------------------------------------------------------------------------- /Axchange/Interface/DeviceFileView/DeviceFileView+Actions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Axchange/Interface/DeviceFileView/DeviceFileView+Actions.swift -------------------------------------------------------------------------------- /Axchange/Interface/DeviceFileView/DeviceFileView+ControlBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Axchange/Interface/DeviceFileView/DeviceFileView+ControlBar.swift -------------------------------------------------------------------------------- /Axchange/Interface/DeviceFileView/DeviceFileView+Helper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Axchange/Interface/DeviceFileView/DeviceFileView+Helper.swift -------------------------------------------------------------------------------- /Axchange/Interface/DeviceFileView/DeviceFileView+LogElement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Axchange/Interface/DeviceFileView/DeviceFileView+LogElement.swift -------------------------------------------------------------------------------- /Axchange/Interface/DeviceFileView/DeviceFileView+Menu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Axchange/Interface/DeviceFileView/DeviceFileView+Menu.swift -------------------------------------------------------------------------------- /Axchange/Interface/DeviceFileView/DeviceFileView+Progress.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Axchange/Interface/DeviceFileView/DeviceFileView+Progress.swift -------------------------------------------------------------------------------- /Axchange/Interface/DeviceFileView/DeviceFileView+RowIcon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Axchange/Interface/DeviceFileView/DeviceFileView+RowIcon.swift -------------------------------------------------------------------------------- /Axchange/Interface/DeviceFileView/DeviceFileView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Axchange/Interface/DeviceFileView/DeviceFileView.swift -------------------------------------------------------------------------------- /Axchange/Interface/LicenseView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Axchange/Interface/LicenseView.swift -------------------------------------------------------------------------------- /Axchange/Interface/MainView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Axchange/Interface/MainView.swift -------------------------------------------------------------------------------- /Axchange/Interface/SidebarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Axchange/Interface/SidebarView.swift -------------------------------------------------------------------------------- /Axchange/Interface/UnauthorizedView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Axchange/Interface/UnauthorizedView.swift -------------------------------------------------------------------------------- /Axchange/Interface/WelcomeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Axchange/Interface/WelcomeView.swift -------------------------------------------------------------------------------- /Axchange/Resources/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Axchange/Resources/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Axchange/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Axchange/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Axchange/Resources/Assets.xcassets/AppIcon.appiconset/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Axchange/Resources/Assets.xcassets/AppIcon.appiconset/icon-128.png -------------------------------------------------------------------------------- /Axchange/Resources/Assets.xcassets/AppIcon.appiconset/icon-128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Axchange/Resources/Assets.xcassets/AppIcon.appiconset/icon-128@2x.png -------------------------------------------------------------------------------- /Axchange/Resources/Assets.xcassets/AppIcon.appiconset/icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Axchange/Resources/Assets.xcassets/AppIcon.appiconset/icon-16.png -------------------------------------------------------------------------------- /Axchange/Resources/Assets.xcassets/AppIcon.appiconset/icon-16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Axchange/Resources/Assets.xcassets/AppIcon.appiconset/icon-16@2x.png -------------------------------------------------------------------------------- /Axchange/Resources/Assets.xcassets/AppIcon.appiconset/icon-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Axchange/Resources/Assets.xcassets/AppIcon.appiconset/icon-256.png -------------------------------------------------------------------------------- /Axchange/Resources/Assets.xcassets/AppIcon.appiconset/icon-256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Axchange/Resources/Assets.xcassets/AppIcon.appiconset/icon-256@2x.png -------------------------------------------------------------------------------- /Axchange/Resources/Assets.xcassets/AppIcon.appiconset/icon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Axchange/Resources/Assets.xcassets/AppIcon.appiconset/icon-32.png -------------------------------------------------------------------------------- /Axchange/Resources/Assets.xcassets/AppIcon.appiconset/icon-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Axchange/Resources/Assets.xcassets/AppIcon.appiconset/icon-32@2x.png -------------------------------------------------------------------------------- /Axchange/Resources/Assets.xcassets/AppIcon.appiconset/icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Axchange/Resources/Assets.xcassets/AppIcon.appiconset/icon-512.png -------------------------------------------------------------------------------- /Axchange/Resources/Assets.xcassets/AppIcon.appiconset/icon-512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Axchange/Resources/Assets.xcassets/AppIcon.appiconset/icon-512@2x.png -------------------------------------------------------------------------------- /Axchange/Resources/Assets.xcassets/Avatar.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Axchange/Resources/Assets.xcassets/Avatar.imageset/Contents.json -------------------------------------------------------------------------------- /Axchange/Resources/Assets.xcassets/Avatar.imageset/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Axchange/Resources/Assets.xcassets/Avatar.imageset/icon.png -------------------------------------------------------------------------------- /Axchange/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Axchange/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Axchange/Resources/InfoPlist.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Axchange/Resources/InfoPlist.xcstrings -------------------------------------------------------------------------------- /Axchange/Resources/Localizable.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Axchange/Resources/Localizable.xcstrings -------------------------------------------------------------------------------- /Axchange/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Axchange/main.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Download_on_the_App_Store_Badge_US-UK_RGB_blk_092917.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Resources/Download_on_the_App_Store_Badge_US-UK_RGB_blk_092917.svg -------------------------------------------------------------------------------- /Resources/Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Resources/Preview.png -------------------------------------------------------------------------------- /Resources/Privacy.md: -------------------------------------------------------------------------------- 1 | # Privacy Policy 2 | 3 | We do not collect any data from this app. 4 | -------------------------------------------------------------------------------- /Resources/i18n/zh-Hans/Download_on_the_Mac_App_Store_Badge_CNSC_RGB_blk_092917.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Resources/i18n/zh-Hans/Download_on_the_Mac_App_Store_Badge_CNSC_RGB_blk_092917.svg -------------------------------------------------------------------------------- /Resources/i18n/zh-Hans/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Resources/i18n/zh-Hans/README.md -------------------------------------------------------------------------------- /Resources/icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Resources/icon.psd -------------------------------------------------------------------------------- /Scripts/BuildADB/build-abseil-cpp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Scripts/BuildADB/build-abseil-cpp.sh -------------------------------------------------------------------------------- /Scripts/BuildADB/build-android-tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Scripts/BuildADB/build-android-tools.sh -------------------------------------------------------------------------------- /Scripts/BuildADB/build-brotli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Scripts/BuildADB/build-brotli.sh -------------------------------------------------------------------------------- /Scripts/BuildADB/build-googletest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Scripts/BuildADB/build-googletest.sh -------------------------------------------------------------------------------- /Scripts/BuildADB/build-lz4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Scripts/BuildADB/build-lz4.sh -------------------------------------------------------------------------------- /Scripts/BuildADB/build-pcre2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Scripts/BuildADB/build-pcre2.sh -------------------------------------------------------------------------------- /Scripts/BuildADB/build-protobuf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Scripts/BuildADB/build-protobuf.sh -------------------------------------------------------------------------------- /Scripts/BuildADB/build-utf8_range.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Scripts/BuildADB/build-utf8_range.sh -------------------------------------------------------------------------------- /Scripts/BuildADB/build-zstd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Scripts/BuildADB/build-zstd.sh -------------------------------------------------------------------------------- /Scripts/BuildADB/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Scripts/BuildADB/compile.sh -------------------------------------------------------------------------------- /Scripts/BuildADB/define.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Scripts/BuildADB/define.sh -------------------------------------------------------------------------------- /Scripts/BuildADB/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Scripts/BuildADB/make.sh -------------------------------------------------------------------------------- /Scripts/BuildADB/prepare.source.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lakr233/Axchange/HEAD/Scripts/BuildADB/prepare.source.sh --------------------------------------------------------------------------------