Skip to content

yanshuimu/MangoFixUtil

Repository files navigation

CocoaPods Compatible Platform

项目简介

一个简单、好用、稳定的iOS热更新平台,目前能正常过审。

在中大型项目中经过多年实战迭代,能满足App日常的Bug修复、功能更新。

拥有一批忠实、活跃的老用户,最早2021年5月使用至今。

累计已服务 150+ AppStore应用。

主要功能

主要功能有 应用管理 | 版本管理 | 补丁管理 | 日活统计 | 在线日志 | 系统设置,具体如图:


平台地址:https://patchhub.top/mangofix/login


最近更新

  • 2024.11.27: 新增代理方法 | 修复偶现补丁激活数大于设备数的问题 | 修复偶现补丁失效的问题

准备工作

CocoaPods

推荐使用CocoaPods方式添加MangoFixUtil到您的项目中

# Podfile
pod 'MangoFixUtil', '~> 2.1.6'

示例

@implementation AppDelegate

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {

    // 我们把初始化放在最前面,这样的好处是在该方法后面执行的代码都可以被修复
    [self setupMangoFixUtil];
    
    self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
    self.window.backgroundColor = [UIColor whiteColor];
    self.window.rootViewController = [[ViewController alloc] init];
    [self.window makeKeyAndVisible];
            
    return YES;
}

- (void)setupMangoFixUtil {
    
    [[MangoFixUtil startWithAppId:APPID aesKey:AES128KEY] evalRemoteMangoScript];
}

@end

注意:模拟器运行需用Rosetta方式


Thanks for

Mango

About

一个简单、好用、稳定的iOS热更新平台。

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published