Skip to content

KirbyInGitHub/elib

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

elib

CI Status Version License Platform

Example

To run the example project, clone the repo, and run pod install from the Example directory first.

Requirements

Installation

elib is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod 'elib', :git => 'https://github.com/MojoLayersOSS/elib.git'

Usage

After adding elib to you Podfile - run pod install

Important

Make sure you go to the Pods Project, and then the elib target -> Build Settings -> Compile Sources As and set that to Objective-C++

#import <elib/elib.h>

NSString *p12File = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"file.p12"];
NSString *provisionFile = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"file.mobileprovision"];
NSString *password = @"Password123";

NSString *ipaFile = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"file.ipa"];

NSString *signedIPAPath = [ELib resignIPAFileAtPath:ipaFile withP12AtPath:p12File andMobileProvisionAtPath:provisionFile andPassword:password];
    

Author

Mojo Layers, LLC - @mojolayersoss

License

elib is available under the MIT license. See the LICENSE file for more info.

About

An Open Source CocoaPods Library for signing IPAs on-device.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 82.5%
  • C 9.9%
  • Objective-C 6.8%
  • Ruby 0.8%