├── .gitignore ├── LICENSE.md ├── README.md ├── adbwifi.iml ├── androidscripts.rb └── src ├── adbscreenrecord.groovy ├── adbwifi.groovy └── devtools.groovy /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | out 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhelleberg/android-scripts/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhelleberg/android-scripts/HEAD/README.md -------------------------------------------------------------------------------- /adbwifi.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhelleberg/android-scripts/HEAD/adbwifi.iml -------------------------------------------------------------------------------- /androidscripts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhelleberg/android-scripts/HEAD/androidscripts.rb -------------------------------------------------------------------------------- /src/adbscreenrecord.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhelleberg/android-scripts/HEAD/src/adbscreenrecord.groovy -------------------------------------------------------------------------------- /src/adbwifi.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhelleberg/android-scripts/HEAD/src/adbwifi.groovy -------------------------------------------------------------------------------- /src/devtools.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhelleberg/android-scripts/HEAD/src/devtools.groovy --------------------------------------------------------------------------------