美文网首页
以无线方式安装企业内部iOS应用(启动下载更新发布)总结

以无线方式安装企业内部iOS应用(启动下载更新发布)总结

作者: Coder_Cat | 来源:发表于2018-06-15 17:53 被阅读64次

1.启动应用程序:

应用程序入口是main函数:

int main(int argc, char * argv[])
{
    @autoreleasepool {
        return UIApplicationMain(argc, argv, nil, NSStringFromClass([BoncAppDelegate class]));
    }
}

main函数中有代用的UIApplicationMain函数,然后会调用UIApplicationDelegate- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(nullable NSDictionary *)launchOptions代理方法,上面示例是BoncAppDelegate这个类(继承UIResponder),也可以用默认的AppDelegate,也就是说应用程序启动完成会调用该方法。

2.校验版本号来决定是更新,还是进入登录页面,具体如下面示例:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions{
 //标记用户偏好设置中是否有手势登录
   BOOL useGesture = NO;
    NSString * key = [[NSUserDefaults standardUserDefaults] objectForKey:@"USERID"];
    if ([[userDefaults objectForKey:key] length] > 0) {
        useGesture = YES;
    }
    _ _weak typeof(self)temSelf = self;
   //将当前版本号提交给服务器验证是更新还是登录
    [[IDataHttpRequest sharedRequest] fetchVersionsInforWithParams: [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleVersion"] success:^(NSDictionary *returnDic) {

        if (useGesture) {//设置了手势就进入手势登录界面
            [temSelf shareGestureLoginView];
        }else//否是就进入用户名密码登录界面
            [temSelf shareLoginView];
      //如果当前版本低于服务器上包的版本就会返回状态码`09`和`99`(自已和后台约定),这里`99`是强制更新
        if ([returnDic[@"state"][@"code"] isEqualToString:@"09"] || [returnDic[@"state"][@"code"] isEqualToString:@"99"]) {
            NSString *cancelTitle = @"取消";
            if ([returnDic[@"state"][@"code"] isEqualToString:@"99"]) {
                self.forcedUpDate = YES;
                cancelTitle = @"退出";
            }
            UIAlertView *alerView=[[UIAlertView alloc]initWithTitle:@"更新内容" message:returnDic[@"state"][@"msg"] delegate:temSelf cancelButtonTitle:cancelTitle otherButtonTitles:@"更新",nil];
           //获取更新地址,因为本应用是企业证书发布发布到自己服务器的app,所以该更新地址是一个配置文件的地址
            temSelf.upDateUrl=returnDic[@"data"][@"updateUrl"];
            [alerView show];
        }
    } error:^(NSString *msg) {
  //否则就进入登录界面
        if (useGesture) {
            [temSelf shareGestureLoginView];
        }else
            [temSelf shareLoginView];
    }];
}
//弹框代理方法
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex{
    
    if (buttonIndex==0) {//点击退出
        if (self.forcedUpDate) {//如果是强制跟新就退出
            exit(0);
        }
    }else{//点击更新
//更新应用
        [[UIApplication sharedApplication] openURL:[NSURL URLWithString:self.upDateUrl]];
        exit(0);//应用程序退出
    }
}

其中[[UIApplication sharedApplication] openURL:[NSURL URLWithString:self.upDateUrl]];中的self.upDateUrlitms-services://?action=download-manifest&url=https://raw.githubusercontent.com/MaxwellJF/SH_BIportable/master/BIportable.plist,itms-services://?action=download-manifest&url=是系统的一个协议命令,后面的https://raw.githubusercontent.com/MaxwellJF/SH_BIportable/master/BIportable.plist是一个清单文件,然后系统会去下载这个清单文件,下载完成后会提示xxx要安装xxxapp,然后点击安装就会去下载并安装。流程大概就是这样。

3.发布App

1.要发布企业内包使用的App,需要企业开发证书及签证描述文件(这里不再赘述),还要一个清单文件,清单文件是一个 XML plist 文件,可供 Apple 设备用来从您的 Web 服务器上查找、下载和安装应用。清单文件由 Xcode 创建,里面的内容是在共享用于企业分发的归档应用时所提供的信息。

配置plist文件
用Xcode的Source Code打开清单文件:
用Source Code打开
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>items</key>
    <array>
        <dict>
            <key>assets</key>
            <array>
                <dict>
                    <key>kind</key>
                    <string>software-package</string>
                    <key>url</key>
                    <string>ipa包URL(必填)</string>
                </dict>
                <dict>
                    <key>kind</key>
                    <string>full-size-image</string>
                    <key>needs-shine</key>
                    <false/>
                    <key>url</key>
                    <string>下载时大图(非必填)</string>
                </dict>
                <dict>
                    <key>kind</key>
                    <string>display-image</string>
                    <key>needs-shine</key>
                    <false/>
                    <key>url</key>
                    <string>下载时小图(非必填)</string>
                </dict>
            </array>
            <key>metadata</key>
            <dict>
                <key>bundle-identifier</key>
                <string>BundleID(必填)</string>
                <key>bundle-version</key>
                <string>版本号(必填)</string>
                <key>kind</key>
                <string>software</string>
                <key>subtitle</key>
                <string>副标题(非必填)</string>
                <key>title</key>
                <string>应用名(必填)</string>
            </dict>
        </dict>
    </array>
</dict>
</plist>

清单文件可以看到有三个URL,分别存放ipa,大小图标。当用Safari打开plist时会根据填的URL来下载安装ipa,大小图标,还有BundleID,版本号,主标题(应用名),副标题等信息。
2.如何生成这个清单文件
在打包过程中(Product -> Archive->Export),选中企业证书打包:

选中企业证书打包
勾选Additional Options,配置后用过可以通过Safari下载应用
勾选Additional Options
填写App的下载地址,应用图标地址(必须是https协议)
image.png
然后打包过程不再赘述,选中证书和描述文件后就会和ipa包一起生产一个manifest.plist文件
manifest.plist
manifest.plist内容
默认的是这个内容,可以标记添加一些其他内容如副标题。
3.上传清单文件到服务器
做一个web页面,然后生成一个二维码,以便第一次安装的时候扫码安装,页面的样式可以参考蒲公英等平台的样式,在点击安装的时候触发item-servie的命令就行了。关键点就是清单文件必须是https(7.0之后)链接,下载时的type,openURL时前面拼接上item-service的协议命令。之后这个清单文件的地址链接必须得是https的,否则会提示不安全的地址,不会安装app。
4.实际操作示例:
这里我将清单文件上传到GitHub上,具体操作可参考使用github存放plist文件,raw生成的url为:https://raw.githubusercontent.com/JunHeCoder/BoncTest/master/shbonc.plist,可复制itms-services://?action=download-manifest&url=https://raw.githubusercontent.com/JunHeCoder/BoncTest/master/shbonc.plist去手机Sarfari中打开可以完成下载安装。效果如下
效果图.gif
可参考苹果官方文档:
以无线方式安装企业内部应用

相关文章

网友评论

      本文标题:以无线方式安装企业内部iOS应用(启动下载更新发布)总结

      本文链接:https://www.haomeiwen.com/subject/askmeftx.html