├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── bin ├── .gitkeep ├── cfa ├── go-ios ├── gojq ├── iosif ├── vidstream └── wda ├── bridge_goios.go ├── bridge_interface.go ├── bridge_iosif.go ├── cfa.go ├── config.go ├── config.json.example ├── controlfloor.go ├── default.json ├── dev_info.go ├── device.go ├── device_tracker.go ├── go.mod ├── http_server.go ├── main.go ├── proc_backoff.go ├── proc_generic.go ├── python ├── configure_cfa.py ├── configure_vidstream.py ├── configure_wda.py ├── pbxproj └── requires.txt ├── repos ├── .gitkeep └── versionMarkers │ ├── CFAgent │ ├── WebDriverAgent │ ├── calculated_json │ ├── go-ios │ ├── iosif │ ├── ujsonin │ └── vidapp ├── sanity.go ├── shutdown.go ├── util └── signers.pl ├── video_app_stream.go ├── video_img_consumer.go ├── video_img_handler.go └── wda.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ios_remote_provider/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ios_remote_provider/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ios_remote_provider/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ios_remote_provider/HEAD/README.md -------------------------------------------------------------------------------- /bin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/cfa: -------------------------------------------------------------------------------- 1 | ../repos/CFAgent/build/Build/Products/ -------------------------------------------------------------------------------- /bin/go-ios: -------------------------------------------------------------------------------- 1 | ../repos/go-ios/go-ios -------------------------------------------------------------------------------- /bin/gojq: -------------------------------------------------------------------------------- 1 | ../repos/ujsonin/gojq -------------------------------------------------------------------------------- /bin/iosif: -------------------------------------------------------------------------------- 1 | ../repos/iosif/iosif -------------------------------------------------------------------------------- /bin/vidstream: -------------------------------------------------------------------------------- 1 | ../vidstream.xcarchive/Products/Applications -------------------------------------------------------------------------------- /bin/wda: -------------------------------------------------------------------------------- 1 | ../repos/WebDriverAgent/build/Build/Products/ -------------------------------------------------------------------------------- /bridge_goios.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ios_remote_provider/HEAD/bridge_goios.go -------------------------------------------------------------------------------- /bridge_interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ios_remote_provider/HEAD/bridge_interface.go -------------------------------------------------------------------------------- /bridge_iosif.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ios_remote_provider/HEAD/bridge_iosif.go -------------------------------------------------------------------------------- /cfa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ios_remote_provider/HEAD/cfa.go -------------------------------------------------------------------------------- /config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ios_remote_provider/HEAD/config.go -------------------------------------------------------------------------------- /config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ios_remote_provider/HEAD/config.json.example -------------------------------------------------------------------------------- /controlfloor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ios_remote_provider/HEAD/controlfloor.go -------------------------------------------------------------------------------- /default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ios_remote_provider/HEAD/default.json -------------------------------------------------------------------------------- /dev_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ios_remote_provider/HEAD/dev_info.go -------------------------------------------------------------------------------- /device.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ios_remote_provider/HEAD/device.go -------------------------------------------------------------------------------- /device_tracker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ios_remote_provider/HEAD/device_tracker.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ios_remote_provider/HEAD/go.mod -------------------------------------------------------------------------------- /http_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ios_remote_provider/HEAD/http_server.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ios_remote_provider/HEAD/main.go -------------------------------------------------------------------------------- /proc_backoff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ios_remote_provider/HEAD/proc_backoff.go -------------------------------------------------------------------------------- /proc_generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ios_remote_provider/HEAD/proc_generic.go -------------------------------------------------------------------------------- /python/configure_cfa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ios_remote_provider/HEAD/python/configure_cfa.py -------------------------------------------------------------------------------- /python/configure_vidstream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ios_remote_provider/HEAD/python/configure_vidstream.py -------------------------------------------------------------------------------- /python/configure_wda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ios_remote_provider/HEAD/python/configure_wda.py -------------------------------------------------------------------------------- /python/pbxproj: -------------------------------------------------------------------------------- 1 | ../repos/mod-pbxproj/pbxproj -------------------------------------------------------------------------------- /python/requires.txt: -------------------------------------------------------------------------------- 1 | openstep_parser>=1.5.1 2 | docopt 3 | -------------------------------------------------------------------------------- /repos/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/versionMarkers/CFAgent: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /repos/versionMarkers/WebDriverAgent: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /repos/versionMarkers/calculated_json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/versionMarkers/go-ios: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /repos/versionMarkers/iosif: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /repos/versionMarkers/ujsonin: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /repos/versionMarkers/vidapp: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /sanity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ios_remote_provider/HEAD/sanity.go -------------------------------------------------------------------------------- /shutdown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ios_remote_provider/HEAD/shutdown.go -------------------------------------------------------------------------------- /util/signers.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ios_remote_provider/HEAD/util/signers.pl -------------------------------------------------------------------------------- /video_app_stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ios_remote_provider/HEAD/video_app_stream.go -------------------------------------------------------------------------------- /video_img_consumer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ios_remote_provider/HEAD/video_img_consumer.go -------------------------------------------------------------------------------- /video_img_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ios_remote_provider/HEAD/video_img_handler.go -------------------------------------------------------------------------------- /wda.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ios_remote_provider/HEAD/wda.go --------------------------------------------------------------------------------