-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:ineo6/resignapp
# Conflicts: # README.md # package-lock.json # package.json
- Loading branch information
Showing
5 changed files
with
178 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,61 @@ | ||
# RebuildApp | ||
# RebuildApp | ||
|
||
Rebuild and install app without jailbreak. | ||
|
||
# Usage | ||
|
||
``` | ||
$ npm install rebuildapp -g | ||
$ mkdir tweak-demo && cd tweak-demo | ||
$ rebuildapp --new | ||
``` | ||
|
||
pack ipa | ||
|
||
``` | ||
// auto search | ||
// 1. find provisitionFile | ||
// 2. find bundleId | ||
$ rebuildapp | ||
// pass file | ||
$ rebuildapp -i "iPhone Developer: xxx" -b "com.xx.test" -m ./embedded.mobileprovision -o result.ipa xxx.ipa | ||
``` | ||
|
||
more command | ||
|
||
|
||
```bash | ||
Usage: rebuildapp [--options ...] [ipafile] | ||
|
||
Options: | ||
|
||
-V, --version output the version number | ||
-n, --new create a rebuild workspace. | ||
-b, --bundleid [BUNDLEID] Change the bundleid when repackaging | ||
-i, --identity [iPhone Distribution:xxx] Specify Common name to use | ||
-k, --keychain [KEYCHAIN] Specify alternative keychain file | ||
-m, --mobileprovision [FILE]] Specify the mobileprovision file to use | ||
-o, --output [APP.ipa] Path to the output IPA filename | ||
-ai, --auto auto install | ||
-h, --help output usage information | ||
Examples: | ||
|
||
$ resignapp -i "iPhone Distribution:xxx" -b "com.xx.test" test-app.ipa | ||
|
||
``` | ||
|
||
# Templates | ||
|
||
``` | ||
. | ||
├── README.md | ||
├── embedded.mobileprovision | ||
├── lib # 待注入dylib | ||
│ └── *.dylib | ||
├── output | ||
├── tool # 工具 | ||
│ ├── libsubstrate.dylib | ||
│ └── yololib | ||
└── workSpace # 工作区域 | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.