First, you need to install SSH to your device to be able to copy files via scp.
Build your application and grab the binary from your build directory. Copy it to the device's /Applications folder using scp. Change the permissions to 755 recursively using chmod -R 755 ApplicationName.app, reboot your iPhone.
And I strongly encourage you to enroll in the Developer Program and pay Apple for the work they have done in creating this great SDK.
发布评论
评论(1)
首先,您需要在设备上安装 SSH,以便能够通过 scp 复制文件。
构建您的应用程序并从构建目录中获取二进制文件。使用
scp
将其复制到设备的 /Applications 文件夹。使用 chmod -R 755 ApplicationName.app 递归地将权限更改为 755,然后重新启动 iPhone。我强烈鼓励您注册开发者计划,并向 Apple 支付他们在创建这个出色的 SDK 过程中所做的工作。
First, you need to install SSH to your device to be able to copy files via scp.
Build your application and grab the binary from your build directory. Copy it to the device's /Applications folder using
scp
. Change the permissions to 755 recursively usingchmod -R 755 ApplicationName.app
, reboot your iPhone.And I strongly encourage you to enroll in the Developer Program and pay Apple for the work they have done in creating this great SDK.