Create the project
Create an empty project with XCode, then create a file called Podfile in the root directory of the project. We will use the Swift language, but all of this can be translated to Objective-C.
We will use CocoaPods to install the SDK in our project. If you have not installed CocoaPods yet, open a terminal window and run this command:
$ gem install cocoapodsAfter, create a Podfile, this can be done by running
$ pod initOpen the Podfile create and write this, replacing YourTarget with the name of your target:
platform :ios, '10.0'
target 'YourTarget' do
use_frameworks!
pod 'MBurger'
endThen open terminal and run
$ pod installIf everything has gone well you will have installed the MBurger SDK in your project.
Add the MBurger SDK dependency from Maven or download it from the Github project page, then open Android Studio and click on New Project, setting up minimum SDK at least OS version 4.2.
Last updated
Was this helpful?