Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/toshi0383/ipanema
ipanema analyzes and prints useful information from *.ipa file.
https://github.com/toshi0383/ipanema
Last synced: about 2 months ago
JSON representation
ipanema analyzes and prints useful information from *.ipa file.
- Host: GitHub
- URL: https://github.com/toshi0383/ipanema
- Owner: toshi0383
- License: mit
- Created: 2016-11-11T15:03:17.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-04-28T06:36:24.000Z (over 7 years ago)
- Last Synced: 2024-08-16T10:42:15.355Z (4 months ago)
- Language: Go
- Homepage:
- Size: 13.7 KB
- Stars: 9
- Watchers: 3
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-ios - ipanema - ipanema analyzes and prints useful information from `.ipa` file. (Tools / Web View)
- awesome-ios-star - ipanema - ipanema analyzes and prints useful information from `.ipa` file. (Tools / Web View)
README
# ipanema 🏖
ipanema analyzes and prints useful information from *.ipa file.
# Usage
```
Usage: ipanema [OPTIONS] path-to.ipaOPTIONS:
-A Do both what -E and -I would do.
-E Find, Decrypt and Print all embedded.mobileprovision files.
-I Find and Print all Info.plist files.
-i Find and Print only app's main Info.plist file.
-v print version number
```## embedded.mobileprovision files. (-E)
```
$ ipanema -E path/to/your.ipa | headAppIDName
XC your app id
ApplicationIdentifierPrefix
XXXXXXXXXX
```## Info.plist (-I)
```
$ ipanema -I path/to/your.ipa | head### App.app/Frameworks/APIKit.framework/Info.plist
{
"CFBundleName" => "APIKit"
"DTXcode" => "0730"
"DTSDKName" => "appletvos9.2"
"NSHumanReadableCopyright" => "Copyright © 2015 Yosuke Ishikawa. All rights reserved."
"DTSDKBuild" => "13Y227"
"CFBundleDevelopmentRegion" => "en"
"CFBundleVersion" => "1"
```# Prequisite
- OSX/macOS
# Install
## Homebrew
ipanema is available via Homebrew.
```
brew tap toshi0383/ipanema && brew install ipanema
```## Binary
- Download the latest binary from [releases page](https://github.com/toshi0383/ipanema/releases).
- `chmod +x ~/Download/ipanema`
- `cp ~/Download/ipanema where-ever-you-want/`# License
MIT