├── AdbShellCommand ├── .gitignore ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── vcs.xml ├── AdbShellCommand.iml ├── app │ ├── .gitignore │ ├── app.iml │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── z │ │ │ └── adbshellcommand │ │ │ ├── IOnRunCommandFinishListener.java │ │ │ ├── MainActivity.java │ │ │ ├── presenter │ │ │ ├── IMainPresenter.java │ │ │ └── MainPresenterImpl.java │ │ │ ├── service │ │ │ ├── IMainService.java │ │ │ └── MainServiceImpl.java │ │ │ ├── util │ │ │ ├── CommandResult.java │ │ │ └── ShellUtils.java │ │ │ └── view │ │ │ └── IMainView.java │ │ └── res │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── README.md └── UML类图.png /AdbShellCommand/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zj1947/AdbShellCommand/HEAD/AdbShellCommand/.gitignore -------------------------------------------------------------------------------- /AdbShellCommand/.idea/.name: -------------------------------------------------------------------------------- 1 | AdbShellCommand -------------------------------------------------------------------------------- /AdbShellCommand/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zj1947/AdbShellCommand/HEAD/AdbShellCommand/.idea/compiler.xml -------------------------------------------------------------------------------- /AdbShellCommand/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zj1947/AdbShellCommand/HEAD/AdbShellCommand/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /AdbShellCommand/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zj1947/AdbShellCommand/HEAD/AdbShellCommand/.idea/gradle.xml -------------------------------------------------------------------------------- /AdbShellCommand/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zj1947/AdbShellCommand/HEAD/AdbShellCommand/.idea/misc.xml -------------------------------------------------------------------------------- /AdbShellCommand/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zj1947/AdbShellCommand/HEAD/AdbShellCommand/.idea/modules.xml -------------------------------------------------------------------------------- /AdbShellCommand/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zj1947/AdbShellCommand/HEAD/AdbShellCommand/.idea/vcs.xml -------------------------------------------------------------------------------- /AdbShellCommand/AdbShellCommand.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zj1947/AdbShellCommand/HEAD/AdbShellCommand/AdbShellCommand.iml -------------------------------------------------------------------------------- /AdbShellCommand/app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zj1947/AdbShellCommand/HEAD/AdbShellCommand/app/.gitignore -------------------------------------------------------------------------------- /AdbShellCommand/app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zj1947/AdbShellCommand/HEAD/AdbShellCommand/app/app.iml -------------------------------------------------------------------------------- /AdbShellCommand/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zj1947/AdbShellCommand/HEAD/AdbShellCommand/app/build.gradle -------------------------------------------------------------------------------- /AdbShellCommand/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zj1947/AdbShellCommand/HEAD/AdbShellCommand/app/proguard-rules.pro -------------------------------------------------------------------------------- /AdbShellCommand/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zj1947/AdbShellCommand/HEAD/AdbShellCommand/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /AdbShellCommand/app/src/main/java/com/z/adbshellcommand/IOnRunCommandFinishListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zj1947/AdbShellCommand/HEAD/AdbShellCommand/app/src/main/java/com/z/adbshellcommand/IOnRunCommandFinishListener.java -------------------------------------------------------------------------------- /AdbShellCommand/app/src/main/java/com/z/adbshellcommand/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zj1947/AdbShellCommand/HEAD/AdbShellCommand/app/src/main/java/com/z/adbshellcommand/MainActivity.java -------------------------------------------------------------------------------- /AdbShellCommand/app/src/main/java/com/z/adbshellcommand/presenter/IMainPresenter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zj1947/AdbShellCommand/HEAD/AdbShellCommand/app/src/main/java/com/z/adbshellcommand/presenter/IMainPresenter.java -------------------------------------------------------------------------------- /AdbShellCommand/app/src/main/java/com/z/adbshellcommand/presenter/MainPresenterImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zj1947/AdbShellCommand/HEAD/AdbShellCommand/app/src/main/java/com/z/adbshellcommand/presenter/MainPresenterImpl.java -------------------------------------------------------------------------------- /AdbShellCommand/app/src/main/java/com/z/adbshellcommand/service/IMainService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zj1947/AdbShellCommand/HEAD/AdbShellCommand/app/src/main/java/com/z/adbshellcommand/service/IMainService.java -------------------------------------------------------------------------------- /AdbShellCommand/app/src/main/java/com/z/adbshellcommand/service/MainServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zj1947/AdbShellCommand/HEAD/AdbShellCommand/app/src/main/java/com/z/adbshellcommand/service/MainServiceImpl.java -------------------------------------------------------------------------------- /AdbShellCommand/app/src/main/java/com/z/adbshellcommand/util/CommandResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zj1947/AdbShellCommand/HEAD/AdbShellCommand/app/src/main/java/com/z/adbshellcommand/util/CommandResult.java -------------------------------------------------------------------------------- /AdbShellCommand/app/src/main/java/com/z/adbshellcommand/util/ShellUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zj1947/AdbShellCommand/HEAD/AdbShellCommand/app/src/main/java/com/z/adbshellcommand/util/ShellUtils.java -------------------------------------------------------------------------------- /AdbShellCommand/app/src/main/java/com/z/adbshellcommand/view/IMainView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zj1947/AdbShellCommand/HEAD/AdbShellCommand/app/src/main/java/com/z/adbshellcommand/view/IMainView.java -------------------------------------------------------------------------------- /AdbShellCommand/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zj1947/AdbShellCommand/HEAD/AdbShellCommand/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /AdbShellCommand/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zj1947/AdbShellCommand/HEAD/AdbShellCommand/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /AdbShellCommand/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zj1947/AdbShellCommand/HEAD/AdbShellCommand/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /AdbShellCommand/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zj1947/AdbShellCommand/HEAD/AdbShellCommand/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AdbShellCommand/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zj1947/AdbShellCommand/HEAD/AdbShellCommand/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AdbShellCommand/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zj1947/AdbShellCommand/HEAD/AdbShellCommand/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /AdbShellCommand/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zj1947/AdbShellCommand/HEAD/AdbShellCommand/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /AdbShellCommand/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zj1947/AdbShellCommand/HEAD/AdbShellCommand/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /AdbShellCommand/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zj1947/AdbShellCommand/HEAD/AdbShellCommand/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /AdbShellCommand/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zj1947/AdbShellCommand/HEAD/AdbShellCommand/build.gradle -------------------------------------------------------------------------------- /AdbShellCommand/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zj1947/AdbShellCommand/HEAD/AdbShellCommand/gradle.properties -------------------------------------------------------------------------------- /AdbShellCommand/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zj1947/AdbShellCommand/HEAD/AdbShellCommand/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /AdbShellCommand/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zj1947/AdbShellCommand/HEAD/AdbShellCommand/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /AdbShellCommand/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zj1947/AdbShellCommand/HEAD/AdbShellCommand/gradlew -------------------------------------------------------------------------------- /AdbShellCommand/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zj1947/AdbShellCommand/HEAD/AdbShellCommand/gradlew.bat -------------------------------------------------------------------------------- /AdbShellCommand/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zj1947/AdbShellCommand/HEAD/README.md -------------------------------------------------------------------------------- /UML类图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zj1947/AdbShellCommand/HEAD/UML类图.png --------------------------------------------------------------------------------