File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -56,6 +56,7 @@ python -m py_compile src/scripts/*.py && xcodebuild -target ios-deploy-lib && xc
56
56
-L, --justlaunch just launch the app and exit lldb
57
57
-v, --verbose enable verbose output
58
58
-m, --noinstall directly start debugging without app install (-d not required)
59
+ -A, --app_deltas incremental install. must specify a directory to store app deltas to determine what needs to be installed
59
60
-p, --port <number> port used for device, default: dynamic
60
61
-r, --uninstall uninstall the app before install (do not use with -m; app cache and data are cleared)
61
62
-9, --uninstall_only uninstall the app ONLY. Use only with -1 <bundle_id>
@@ -92,6 +93,9 @@ The commands below assume that you have an app called `my.app` with bundle id `b
92
93
// deploy and launch your app to a connected device, quit when app crashes or exits
93
94
ios-deploy --noninteractive --debug --bundle my.app
94
95
96
+ // deploy your app to a connected device using incremental installation
97
+ ios-deploy --app_deltas /tmp --bundle my.app
98
+
95
99
// Upload a file to your app's Documents folder
96
100
ios-deploy --bundle_id 'bundle.id' --upload test.txt --to Documents/test.txt
97
101
You can’t perform that action at this time.
0 commit comments