testing - iOS: Automatically transfer saved data from iOS devices to desktop (Mac or PC) without jailbreak -


i know can transfer files ios bundling data app resources , let xcode handle deployment, can automated.

however, possible transfer saved data ios device desktop machine without human intervention?

i'm asking automated test scenario. build test app includes input data in app bundle, deploy , run tests on device, , save results , transfer results mac. also, tests written in lua, app runner.

is goal achievable @ all?

there may more specific ios, here's generic solution:

you can bundle luasocket test runner, , send results small server running on dev machine.

server:

socket = require"socket" server = socket.tcp() server:bind("localhost", 9876) server:listen() while true     client = server:accept()     write_to_disk(client:recieve"*a") end 

client:

data = serialize(test_results) socket = require"socket" client = socket.tcp() client:connect("devmachine",9876) client:send(data) client:close() 

Comments

Popular posts from this blog

linux - Does gcc have any options to add version info in ELF binary file? -

android - send complex objects as post php java -

charts - What graph/dashboard product is facebook using in Dashboard: PUE & WUE -