Skip to content

dmueller39/ios-build-utils

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%