Skip to content

Commit

Permalink
v2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
aidserv committed Sep 2, 2023
1 parent 0ab5109 commit 273a46e
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,28 @@ $ xcode-select --install
> cpp tonbu11.1.0.ipa
```

运行以上命令输出:设备名:iPhone 授权成功 就自动授权成功,最后ipa安装成功会弹出安装成功界面
运行以上命令输出:设备名:iPhone 授权成功 就自动授权成功,最后ipa安装成功会弹出安装成功界面,以上例子是每次安装app自动授权,如果需要一次性授权,请把授权和安装代码分开,目前提供两个外部dll函数

以上命令安装好,直接在手机屏幕上找到三个app 打开,检测是否需要输入apple id和密码,手机授权之后,需要在次测试,只能把把手机还原到初厂设置,具体操作是【设置】,【通用】,【传输或还原iPhone】,【抹掉所有内容和设置】。

# 主要函数
```
/*******************************************************
根据udid授权
参数:udid
返回值:成功为true
*******************************************************/
bool AuthorizeDevice(const char * udid);
/*******************************************************
根据udid安装path 的ipa 包
参数:udid
ipaPath ipa包的路径
返回值:成功为true
*******************************************************/
bool InstallApplication(const char* udid,const char* ipaPath);
```


0 comments on commit 273a46e

Please sign in to comment.