├── .github ├── FUNDING.yml └── workflows │ ├── build.yml │ └── release.yml ├── .gitignore ├── .idea ├── .name ├── compiler.xml ├── gradle.xml ├── jarRepositories.xml ├── misc.xml └── vcs.xml ├── .run ├── Run IDE with Plugin.run.xml ├── Run Plugin Tests.run.xml ├── Run Plugin Verification.run.xml └── Run Qodana.run.xml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── detekt-config.yml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── images └── spock_adb.png ├── local.properties ├── settings.gradle.kts └── src ├── main ├── kotlin │ └── spock │ │ ├── AdbDrawerViewer.kt │ │ └── adb │ │ ├── AdbController.kt │ │ ├── AdbControllerImp.kt │ │ ├── AppSettingService.kt │ │ ├── IDeivceHellper.kt │ │ ├── IPAddressInputValidator.kt │ │ ├── PsiClassHelper.kt │ │ ├── ShellOutputReceiver.kt │ │ ├── SpockAdbViewer.form │ │ ├── SpockAdbViewer.kt │ │ ├── actions │ │ ├── BaseAction.kt │ │ ├── GetCurrentActivityAction.kt │ │ ├── GetCurrentApplicationBackStackAction.kt │ │ ├── GetCurrentFragmentAction.kt │ │ ├── RestartAppAction.kt │ │ └── RestartAppWithDebuggerAction.kt │ │ ├── command │ │ ├── AdbCommand.kt │ │ ├── AnimatorDurationScaleCommand.kt │ │ ├── ClearAppDataAndRestartCommand.kt │ │ ├── ClearAppDataCommand.kt │ │ ├── Command.kt │ │ ├── Command2.kt │ │ ├── ConnectDeviceOverIPCommand.kt │ │ ├── DontKeepActivitiesState.kt │ │ ├── EnableDisableShowLayoutBoundsCommand.kt │ │ ├── EnableDisableShowTapsCommand.kt │ │ ├── ForceKillAppCommand.kt │ │ ├── GetActivityCommand.kt │ │ ├── GetApplicationBackStackCommand.kt │ │ ├── GetApplicationIDCommand.kt │ │ ├── GetApplicationPermission.kt │ │ ├── GetBackStackCommand.kt │ │ ├── GetConnectedDevicesCommand.kt │ │ ├── GetFragmentsCommand.kt │ │ ├── GrantPermissionCommand.kt │ │ ├── InputOnDeviceCommand.kt │ │ ├── NoInputCommand.kt │ │ ├── OpenDeepLinkCommand.kt │ │ ├── OpenDeveloperOptionsCommand.kt │ │ ├── ProcessDeathCommand.kt │ │ ├── RestartAppCommand.kt │ │ ├── RestartAppWithDebuggerCommand.kt │ │ ├── RevokePermissionCommand.kt │ │ ├── ToggleNetworkCommand.kt │ │ ├── TransitionAnimatorScaleCommand.kt │ │ ├── UninstallAppCommand.kt │ │ └── WindowAnimatorScaleCommand.kt │ │ ├── debugger │ │ └── Debugger.kt │ │ ├── models │ │ ├── ActivityData.kt │ │ └── FragmentData.kt │ │ ├── notification │ │ └── CommonNotifier.kt │ │ ├── premission │ │ ├── CheckBoxDialog.kt │ │ ├── ListItem.kt │ │ └── PermissionDialog.form │ │ └── utils.kt └── resources │ ├── META-INF │ └── plugin.xml │ ├── refresh.png │ ├── settings.png │ └── wifi-16.png └── test └── kotlin └── spock └── adb └── command └── GetFragmentsCommandTest.kt /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | com.wahdan.spockAdb -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.run/Run IDE with Plugin.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/.run/Run IDE with Plugin.run.xml -------------------------------------------------------------------------------- /.run/Run Plugin Tests.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/.run/Run Plugin Tests.run.xml -------------------------------------------------------------------------------- /.run/Run Plugin Verification.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/.run/Run Plugin Verification.run.xml -------------------------------------------------------------------------------- /.run/Run Qodana.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/.run/Run Qodana.run.xml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/README.md -------------------------------------------------------------------------------- /detekt-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/detekt-config.yml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/gradlew.bat -------------------------------------------------------------------------------- /images/spock_adb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/images/spock_adb.png -------------------------------------------------------------------------------- /local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/local.properties -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- 1 | rootProject.name = "com.wahdan.spockAdb" 2 | -------------------------------------------------------------------------------- /src/main/kotlin/spock/AdbDrawerViewer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/kotlin/spock/AdbDrawerViewer.kt -------------------------------------------------------------------------------- /src/main/kotlin/spock/adb/AdbController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/kotlin/spock/adb/AdbController.kt -------------------------------------------------------------------------------- /src/main/kotlin/spock/adb/AdbControllerImp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/kotlin/spock/adb/AdbControllerImp.kt -------------------------------------------------------------------------------- /src/main/kotlin/spock/adb/AppSettingService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/kotlin/spock/adb/AppSettingService.kt -------------------------------------------------------------------------------- /src/main/kotlin/spock/adb/IDeivceHellper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/kotlin/spock/adb/IDeivceHellper.kt -------------------------------------------------------------------------------- /src/main/kotlin/spock/adb/IPAddressInputValidator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/kotlin/spock/adb/IPAddressInputValidator.kt -------------------------------------------------------------------------------- /src/main/kotlin/spock/adb/PsiClassHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/kotlin/spock/adb/PsiClassHelper.kt -------------------------------------------------------------------------------- /src/main/kotlin/spock/adb/ShellOutputReceiver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/kotlin/spock/adb/ShellOutputReceiver.kt -------------------------------------------------------------------------------- /src/main/kotlin/spock/adb/SpockAdbViewer.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/kotlin/spock/adb/SpockAdbViewer.form -------------------------------------------------------------------------------- /src/main/kotlin/spock/adb/SpockAdbViewer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/kotlin/spock/adb/SpockAdbViewer.kt -------------------------------------------------------------------------------- /src/main/kotlin/spock/adb/actions/BaseAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/kotlin/spock/adb/actions/BaseAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/spock/adb/actions/GetCurrentActivityAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/kotlin/spock/adb/actions/GetCurrentActivityAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/spock/adb/actions/GetCurrentApplicationBackStackAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/kotlin/spock/adb/actions/GetCurrentApplicationBackStackAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/spock/adb/actions/GetCurrentFragmentAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/kotlin/spock/adb/actions/GetCurrentFragmentAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/spock/adb/actions/RestartAppAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/kotlin/spock/adb/actions/RestartAppAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/spock/adb/actions/RestartAppWithDebuggerAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/kotlin/spock/adb/actions/RestartAppWithDebuggerAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/spock/adb/command/AdbCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/kotlin/spock/adb/command/AdbCommand.kt -------------------------------------------------------------------------------- /src/main/kotlin/spock/adb/command/AnimatorDurationScaleCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/kotlin/spock/adb/command/AnimatorDurationScaleCommand.kt -------------------------------------------------------------------------------- /src/main/kotlin/spock/adb/command/ClearAppDataAndRestartCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/kotlin/spock/adb/command/ClearAppDataAndRestartCommand.kt -------------------------------------------------------------------------------- /src/main/kotlin/spock/adb/command/ClearAppDataCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/kotlin/spock/adb/command/ClearAppDataCommand.kt -------------------------------------------------------------------------------- /src/main/kotlin/spock/adb/command/Command.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/kotlin/spock/adb/command/Command.kt -------------------------------------------------------------------------------- /src/main/kotlin/spock/adb/command/Command2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/kotlin/spock/adb/command/Command2.kt -------------------------------------------------------------------------------- /src/main/kotlin/spock/adb/command/ConnectDeviceOverIPCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/kotlin/spock/adb/command/ConnectDeviceOverIPCommand.kt -------------------------------------------------------------------------------- /src/main/kotlin/spock/adb/command/DontKeepActivitiesState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/kotlin/spock/adb/command/DontKeepActivitiesState.kt -------------------------------------------------------------------------------- /src/main/kotlin/spock/adb/command/EnableDisableShowLayoutBoundsCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/kotlin/spock/adb/command/EnableDisableShowLayoutBoundsCommand.kt -------------------------------------------------------------------------------- /src/main/kotlin/spock/adb/command/EnableDisableShowTapsCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/kotlin/spock/adb/command/EnableDisableShowTapsCommand.kt -------------------------------------------------------------------------------- /src/main/kotlin/spock/adb/command/ForceKillAppCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/kotlin/spock/adb/command/ForceKillAppCommand.kt -------------------------------------------------------------------------------- /src/main/kotlin/spock/adb/command/GetActivityCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/kotlin/spock/adb/command/GetActivityCommand.kt -------------------------------------------------------------------------------- /src/main/kotlin/spock/adb/command/GetApplicationBackStackCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/kotlin/spock/adb/command/GetApplicationBackStackCommand.kt -------------------------------------------------------------------------------- /src/main/kotlin/spock/adb/command/GetApplicationIDCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/kotlin/spock/adb/command/GetApplicationIDCommand.kt -------------------------------------------------------------------------------- /src/main/kotlin/spock/adb/command/GetApplicationPermission.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/kotlin/spock/adb/command/GetApplicationPermission.kt -------------------------------------------------------------------------------- /src/main/kotlin/spock/adb/command/GetBackStackCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/kotlin/spock/adb/command/GetBackStackCommand.kt -------------------------------------------------------------------------------- /src/main/kotlin/spock/adb/command/GetConnectedDevicesCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/kotlin/spock/adb/command/GetConnectedDevicesCommand.kt -------------------------------------------------------------------------------- /src/main/kotlin/spock/adb/command/GetFragmentsCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/kotlin/spock/adb/command/GetFragmentsCommand.kt -------------------------------------------------------------------------------- /src/main/kotlin/spock/adb/command/GrantPermissionCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/kotlin/spock/adb/command/GrantPermissionCommand.kt -------------------------------------------------------------------------------- /src/main/kotlin/spock/adb/command/InputOnDeviceCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/kotlin/spock/adb/command/InputOnDeviceCommand.kt -------------------------------------------------------------------------------- /src/main/kotlin/spock/adb/command/NoInputCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/kotlin/spock/adb/command/NoInputCommand.kt -------------------------------------------------------------------------------- /src/main/kotlin/spock/adb/command/OpenDeepLinkCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/kotlin/spock/adb/command/OpenDeepLinkCommand.kt -------------------------------------------------------------------------------- /src/main/kotlin/spock/adb/command/OpenDeveloperOptionsCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/kotlin/spock/adb/command/OpenDeveloperOptionsCommand.kt -------------------------------------------------------------------------------- /src/main/kotlin/spock/adb/command/ProcessDeathCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/kotlin/spock/adb/command/ProcessDeathCommand.kt -------------------------------------------------------------------------------- /src/main/kotlin/spock/adb/command/RestartAppCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/kotlin/spock/adb/command/RestartAppCommand.kt -------------------------------------------------------------------------------- /src/main/kotlin/spock/adb/command/RestartAppWithDebuggerCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/kotlin/spock/adb/command/RestartAppWithDebuggerCommand.kt -------------------------------------------------------------------------------- /src/main/kotlin/spock/adb/command/RevokePermissionCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/kotlin/spock/adb/command/RevokePermissionCommand.kt -------------------------------------------------------------------------------- /src/main/kotlin/spock/adb/command/ToggleNetworkCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/kotlin/spock/adb/command/ToggleNetworkCommand.kt -------------------------------------------------------------------------------- /src/main/kotlin/spock/adb/command/TransitionAnimatorScaleCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/kotlin/spock/adb/command/TransitionAnimatorScaleCommand.kt -------------------------------------------------------------------------------- /src/main/kotlin/spock/adb/command/UninstallAppCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/kotlin/spock/adb/command/UninstallAppCommand.kt -------------------------------------------------------------------------------- /src/main/kotlin/spock/adb/command/WindowAnimatorScaleCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/kotlin/spock/adb/command/WindowAnimatorScaleCommand.kt -------------------------------------------------------------------------------- /src/main/kotlin/spock/adb/debugger/Debugger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/kotlin/spock/adb/debugger/Debugger.kt -------------------------------------------------------------------------------- /src/main/kotlin/spock/adb/models/ActivityData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/kotlin/spock/adb/models/ActivityData.kt -------------------------------------------------------------------------------- /src/main/kotlin/spock/adb/models/FragmentData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/kotlin/spock/adb/models/FragmentData.kt -------------------------------------------------------------------------------- /src/main/kotlin/spock/adb/notification/CommonNotifier.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/kotlin/spock/adb/notification/CommonNotifier.kt -------------------------------------------------------------------------------- /src/main/kotlin/spock/adb/premission/CheckBoxDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/kotlin/spock/adb/premission/CheckBoxDialog.kt -------------------------------------------------------------------------------- /src/main/kotlin/spock/adb/premission/ListItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/kotlin/spock/adb/premission/ListItem.kt -------------------------------------------------------------------------------- /src/main/kotlin/spock/adb/premission/PermissionDialog.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/kotlin/spock/adb/premission/PermissionDialog.form -------------------------------------------------------------------------------- /src/main/kotlin/spock/adb/utils.kt: -------------------------------------------------------------------------------- 1 | package spock.adb 2 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/resources/META-INF/plugin.xml -------------------------------------------------------------------------------- /src/main/resources/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/resources/refresh.png -------------------------------------------------------------------------------- /src/main/resources/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/resources/settings.png -------------------------------------------------------------------------------- /src/main/resources/wifi-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/main/resources/wifi-16.png -------------------------------------------------------------------------------- /src/test/kotlin/spock/adb/command/GetFragmentsCommandTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahdanZ/SpockAdb/HEAD/src/test/kotlin/spock/adb/command/GetFragmentsCommandTest.kt --------------------------------------------------------------------------------