dmueller39 / ios-build-utils

iOS Build Utility Scripts

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ios-build-utils

iOS Build Utility Scripts

ipa Packager

Usage:

from ipa_packager import IpaPackager

ipa = IpaPackager("/path/to/MyApp.app","/output/path/MyApp.ipa")
ipa.package()

This will produce MyApp.ipa which bundles MyApp.app and the appropriate files for SwiftSupport and WatchKitSupport as needed.

For example if MyApp was written in swift and included a Watch app, the contents of the ipa file will be

  • MyApp.ipa
    • Payload/MyApp.app
    • SwiftSupport
      • libswift....
      • ....
    • WatchKitSupport
      • WK

Packager

Usage:

from utils.packager import Packager

p = Packager("package.zip")
p.add("/path/to/file")
p.add("/path/to/another/file","another/file")
p.package()

This Produces a zip file with

  • package.zip
    • file
    • another/file

About

iOS Build Utility Scripts

License:MIT License


Languages

Language:Python 100.0%