Skip to content

Instantly share code, notes, and snippets.

View 778477's full-sized avatar

778477 778477

View GitHub Profile
@778477
778477 / rename_section.md
Last active October 26, 2018 03:05
iOS IPA提审 TEXT段超过苹果限制,导致应用不能上架。可以加上特殊的链接指令,将__TEXT中的一些只读变量写到_RODDATA中

解决方案 利用 rename_section 过审核,在Xcode中向 Other Linker Flags 中添加

-Wl,-rename_section,__TEXT,__cstring,__RODATA,__cstring
-Wl,-rename_section,__TEXT,__const,__RODATA,__const
-Wl,-rename_section,__TEXT,__objc_methname,__RODATA,__objc_methname
-Wl,-rename_section,__TEXT,__objc_classname,__RODATA,__objc_classname
-Wl,-rename_section,__TEXT,__objc_methtype,__RODATA,__objc_methtype
@778477
778477 / index.html
Created November 1, 2022 07:33 — forked from kouhot/index.html
Easy HTML to install ipa
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=320, initial-scale=1">
<script src="https://code.jquery.com/jquery-1.11.2.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
<script>
</script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<title>Download ipa</title>