iOS

Learn how to integrate ByteBrew's light-weight Swift and Objective-C SDK.

iOS SDK Integration

tag

Follow the steps below to integrate the Swift and Objective-C ByteBrew SDK:

Step 1

Import ByteBrew iOS Library

There are two ways to import ByteBrew. See below for the two options for you to choose from to import ByteBrew iOS Library:

A

Using a Static Library:

Add the Static Library to your project by following the steps below:

To import the library files go to File -> Add Files to "project" and select the two files listed:

1

libByteBrewNativeiOSPlugin.a

2

ByteBrewNativeiOSPlugin.h

Make sure to add the library to your project in your targets general settings.

B

(Recommended) Using a XCFramework:

(Swift compatible) Import the ByteBrew.xcframework by following the steps below:

To import the framework go to your target -> click the + button on Frameworks, Libraries, and Embeded Content. Locate the ByteBrew.xcframework in your file system.

Step 2

Go to your ByteBrew Dashboard

Go to your Game Settings page on the ByteBrew dashboard and locate your app keys listed on the dashboard. After finding your app keys, copy them.

Step 3

Initialize ByteBrew with your Game ID and Game Key

Initialize ByteBrew using the code below in the "didFinishLaunchingWithOptions" method AppDelegate of your app or game.

Input the corresponding Game ID and Game Key from the ByteBrew dashboard into their parameter fields.

                                

                                    /**OBJECTIVE-C**/
                                    #import "ByteBrewNativeiOSPlugin.h"
                                  
                                    //...
                                  
                                    //Get the App version
                                    NSString *version = [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleShortVersionString"];
                                  
                                    // Initialize ByteBrew
                                    [ByteBrewNativeiOSPlugin InitializeWithSettings:@"GAME_ID" SecretKey:@"GAME_KEY" EngineVersion:@"iOS Native or whatever you want to put here" BuildVersion:version];
                                  
                                  
                                    /**SWIFT**/
                                    import ByteBrewNativeiOSPlugin
                                    
                                    //...
                                  
                                    //Get the App version
                                    let version = Bundle.main.infoDictionary?["CFBundleShortVersionString"] as! String
                                    
                                    // Initialize ByteBrew
                                    ByteBrewNativeiOSPlugin.initialize(withSettings: "GAME_ID", secretKey: "GAME_KEY", engineVersion: "SWIFT", buildVersion: version)
                                  
                                                    
                                
                            

Custom Events Tracking

tag

Custom Events in ByteBrew enable you to deep dive across all of our extensive analytics dashboards. Continue below to learn how to integrate custom events.

Custom Events on ByteBrew allow for an unlimited number of key_name=value; sub-parameters under the custom event. For example, you can have a custom event called “level” that has a subparameter under the event named “levelnumber” and the values of that Level Number subparameter could be “1, 2, 3, 4, 5, etc.”. Additionally you could add in other subparameters for attributes inside the levels of your game, such as "powerups", to show the different equipment used in levels with parameter values "fireball, revive, doublepoints, etc.". The world is your oyster with custom events, so build as complex of an event system as you need for your game. To illustrate our custom event structure visually, see the following diagram:

Custom Events

See samples below to see how to code Custom Events:

Basic Custom Event:

                                


                                    /**OBJECTIVE-C**/
                                    [ByteBrewNativeiOSPlugin AddNewCustomEvent:@"some_event"];
                                    [ByteBrewNativeiOSPlugin AddNewCustomEventWithStringValue:@"CustomEventName" Value:@"key_name=value;"];


                                    /**SWIFT**/
                                    ByteBrewNativeiOSPlugin.addNewCustomEvent("some_event")
                                    ByteBrewNativeiOSPlugin.addNewCustomEvent(withStringValue: "CustomEventName", value: "key_name=value;")

                  
                                    
                                
                            

Dictionary Custom Event Tracking Method:

To easily add additional custom sub-parameters to an event with a dictionary method using string "key_name=value;" pairs shown below:

                                                               
                                
                                /**OBJECTIVE-C**/
                                //Key Value format "key_name=value;"
                                //Custom Events can take multiple pairs, "key_name1=value1;key_name2=value2;key_name3=value3;"
                                [ByteBrewNativeiOSPlugin AddNewCustomEventWithStringValue:@"level_started" Value:@"weapon=megablaster;powerup=extralife;"];



                                /**SWIFT**/
                                //Key Value format "key_name=value;"
                                //Custom Events can take multiple pairs, "key_name1=value1;key_name2=value2;key_name3=value3;"
                                ByteBrewNativeiOSPlugin.addNewCustomEvent(withStringValue: "level_started", value: "weapon=megablaster;powerup=extralife;")


                                
                            

Remote Configs & A/B Tests

tag

Remote Configs allow you to make updates to your app remotely without having to update your game's app store. Adding remote configs to your games are a fantastic way to be agile and send updates or patches to players instantly. Remote Configs are also utilized for creating A/B Tests on the platform.

When planning to integrate Remote Configs, We recommend implementing remote configs throughout all parts of your game to allow you to tweak and tune as you analyze your game performance data. See how to implement remote configs in your game by following the steps below:

1

Loading the Remote Configs

To use Remote Configs, you must first call for the config to get updated. You can call the below code whenever you want to update the configs:

                                
                                

                                    /**OBJECTIVE-C**/
                                    //Call the handler 
                                    [ByteBrewNativeiOSPlugin LoadRemoteConfigs:^(BOOl status) {
                                       //Do whatever you want to do, call a method to get the value? 
                                    }];
                                  
                                    //Check if the remote configs are ready and set
                                    BOOL ready = [ByteBrewNativeiOSPlugin HasRemoteConfigs];
                                  
                                  
                                  
                                    /**SWIFT**/
                                    //Call the handler 
                                    ByteBrewNativeiOSPlugin.loadRemoteConfigs { finished in
                                      
                                    }
                                    
                                    //Check if the remote configs are ready and set
                                    Bool ready = ByteBrewNativeiOSPlugin.hasRemoteConfigs()
                                  
                                  
                                                    
                                
                                
                            
2

Retrieve the Configs

Once the handler has finished, you can call the remote config method below:

                                

                                    /**OBJECTIVE-C**/
                                    //Call to get the key specific value and if the key doesn't exist it will return the default variable specified, like if the AB test user is in the control group
                                    NSString *value = [ByteBrewNativeiOSPlugin RetrieveRemoteConfigs:@"dailyWeapon" DefaultValue:@"goldRevolver"];
                                  
                                  
                                  
                                    /**SWIFT**/
                                    //Call to get the key specific value and if the key doesn't exist it will return the default variable specified, like if the AB test user is in the control group
                                    var config_value = ByteBrewNativeiOSPlugin.retrieveRemoteConfigs("config_key", defaultValue: "default_val")
                                  
                                                    
                                
                            

Push Notifications

tag

Using ByteBrew you can send cross-platform push notifications to your players around the globe. To get started with push notifications follow the steps below.

Step 1

Integrate Push Notifications

Integrating Push Notifications with ByteBrew is super simple and only requires one line of code after initializing the ByteBrew SDK. See the Push Notification integration code line below:

                                
                                

                                    /**OBJECTIVE-C**/
                                    [ByteBrewNativeiOSPlugin StartPushNotification];
                                  
                                  
                                    /**SWIFT**/
                                    ByteBrewNativeiOSPlugin.startPushNotification()
                                  
                                                    
                                
                            
Step 2

Create Push Notification App on the ByteBrew Dashboard

Go to the Push Notification dashboard on ByteBrew and create a new Push Notification App. See our Push Notification Dashboard documentation for step by step walkthroughs about this.

Push Notification Xcode Export Additions (Required iOS Only)

For sending notifications to iOS devices, follow the additional required steps below on Xcode:

Step 1

Add UserNotifications.framework

Add UserNotifications.framework to the frameworks and libraries in Xcode.

Step 2

Add Capabilities

Press "+ Capability" and add the following capabilities listed in steps 3 and 4 below.

Step 3

Add "Background Modes" and under that section, checkmark "Remote Notifications

Step 4

Add "Push Notifications"

Track Purchases

tag

In ByteBrew SDK you can track all your game or apps in-app purchases to analyze your monetization performance on the dashboard. There are two ways to track purchases on ByteBrew. The first way is to use basic in-app purchase events. The second way is to use our real-time server-side purchase validation to validate real purchases vs. fraudulent transactions. See below to learn how to implement either method.

Track Basic In-App Purchases

To track in-app purchases in your game, use the below method:

                                                             
  

                                    /**OBJECTIVE-C**/
                                    [ByteBrewNativeiOSPlugin AddTrackedInAppPurchaseEvent:@"Apple App Store" Currency:@"USD" Amount:5.99 ItemID:@"currencyPack01" Category:@"Currencies"];
                                  
                                    
                                    /**SWIFT**/
                                    ByteBrewNativeiOSPlugin.addTracked(inAppPurchaseEvent: store, currency: currency, amount: amount, itemID: itemID, category: category)
                                  
                                                    
                                
                            

Track Validated Purchases

On ByteBrew, we offer a real-time server-side purchase validation to stop purchase fraud from client-side purchase receipt tampering that takes place in mobile games and apps. To utilize this validation you have two options: (1) a method with a callback to retrieve if a purchase was valid and (2) a method just to validate purchases without a callback. Follow below sections for code snippets for each function:

Purchase Validation with Callback

To track validated in-app purchases utilize the platform specific method. Using this method will create a purchase callback that will return a payload with the purchases details and verification status. See below for the Return Results and message definitions:

                                


                                    /**OBJECTIVE-C**/
                                    [ByteBrewNativeiOSPlugin ValidateiOSInAppPurchaseEvent:@"Apple App Store" Currency:@"USD" Amount:5.99 ItemID:@"currencyPack01" Category:@"Currencies" Receipt:@"RECEIPT/PAYLOAD RECIEVED FROM FINALIZED PURCHASES"
                                      finishedValidationResult:^(NSMutableDictionary *purchaseResult) {
                                      
                                      //make sure to convert to BOOL, NSDictionary stores BOOL as a NSNumber
                                      NSLog(@"ByteBrew Purchase Processed: %@", [purchaseResult valueForKey:@"purchaseProcessed"]);  //Boolean telling if the purchase even went to the server to get checked
                                      
                                      //make sure to convert to BOOL, NSDictionary stores BOOL as a NSNumber
                                      NSLog(@"ByteBrew Purchase isValid: %@", [purchaseResult valueForKey:@"isValid"]);              //BOOL signaling if the purchase is real or fake
                                          
                                      NSLog(@"ByteBrew Purchase itemID: %@", [purchaseResult valueForKey:@"itemID"]);                //Product/Item ID of the purchase processed
                                      
                                      NSLog(@"ByteBrew Purchase message: %@", [purchaseResult valueForKey:@"message"]);              //Message from the server telling the explaination behind the decision
                                      
                                      NSLog(@"ByteBrew Purchase timestamp: %@", [purchaseResult valueForKey:@"timestamp"]);          //Timestamp from the server telling when the verification occured
                                    }];
                                  
                                  
                                    /**SWIFT**/
                                    ByteBrewNativeiOSPlugin.validateiOS(inAppPurchaseEvent: store, currency: currency, amount: 0, itemID: itemID, category: category, receipt: receipt) { purchaseResult in
                                              
                                    }
                                  
                                                    
                                
                            

Returned Results:

The following table are the possible returning results:

fiber_manual_record
purchaseProcessed: Boolean communicating if the purchase was processed by the server.
fiber_manual_record
isValid: Boolean telling if the purchase is Real or Fake.

Returned Results Message:

In addition to the Return Result you will also recieve a message. See below for possible output messages and their definition:

A

"Validation Successful, real purchase.": This means that the message as a real purchase.

B

"Validation Failed, fake purchase.": This means that the purchase is fake or fraudulent.

C

"Error validating receipt, check game configs.": This message means that there might be an issue with the implementation. Check to make sure that the purchaseProcessed boolean is True and go to your game settings on the ByteBrew dashboard to update your Apple App Shared Secret and Google Play License Key.

Purchase Validation without Callback

To track in-app purchases using our validation system without looking for the purchase callback, utilize the platform specific method code snippets below:

                                


                                    /**OBJECTIVE-C**/
                                    [ByteBrewNativeiOSPlugin AddTrackediOSInAppPurchaseEvent:@"Apple App Store" Currency:@"USD" Amount:5.99 ItemID:@"currencyPack01" Category:@"Currencies" Receipt:@"RECEIPT/PAYLOAD RECIEVED FROM FINALIZED PURCHASES"];
                                  
                                  
                                  
                                    /**SWIFT**/
                                    ByteBrewNativeiOSPlugin.addTrackediOS(inAppPurchaseEvent: "Apple App Store", currency: "USD", amount: 5.99, itemID: "currencyPack01", category: "Currencies", receipt: "RECEIPT/PAYLOAD RECIEVED FROM FINALIZED PURCHASES")
                                  
                                                    
                                
                            

Ad Tracking Event

tag

Using ByteBrew you can track your game's or app's ad events. Tracking Ad Events will enable you to see breakdowns of your ads in the monetization dashboard. See the code snippets below to learn how to track ad events:

                                
                                

                                    /**OBJECTIVE-C**/
                                    // Record the Placement Type, Location of the placement, ad unit ID, and Network
                                    [ByteBrewNativeiOSPlugin NewTrackedAdEvent:@"Interstitial" AdLocation:@"EndOfLevel" AdID:@"3253k3302-3r3j4i343-3nij343-405403" AdProvider:@"AdMob"];
                                  
                                    //Some ad event paramters can be ommited like so
                                    [ByteBrewNativeiOSPlugin NewTrackedAdEvent:@"Interstitial" AdLocation:@"EndOfLevel"];
                                  
                                    [ByteBrewNativeiOSPlugin NewTrackedAdEvent:@"Interstitial" AdLocation:@"EndOfLevel" AdID:@"3253k3302-3r3j4i343-3nij343-405403"];
                                  
                                  
                                  
                                    /**SWIFT**/
                                    // Record the Placement Type, Location of the placement, ad unit ID, and Network
                                    ByteBrewNativeiOSPlugin.newTrackedAdEvent("Banner", adLocation: "EndOfLevel", adID: "3253k3302-3r3j4i343-3nij343-405403", adProvider: "AdMob")
                                  
                                    //Some ad event paramters can be ommited like so
                                    ByteBrewNativeiOSPlugin.newTrackedAdEvent("Interstitial", adLocation: "EndOfLevel")
                                  
                                    ByteBrewNativeiOSPlugin.newTrackedAdEvent("Reward", adLocation: "EndOfLevel", adID: "3253k3302-3r3j4i343-3nij343-405403")
                                  
                                                    
                                
                            

Custom User Data Attributes

tag

Data attributes are tags in the SDK that you can give a user to define them more specifically on the dashboard when filtering. For example, you can use data attributes to tag to users to build player segments to send targeted push notifications. If you are looking to update values on users at certain locations of your game, then use Custom Events with subparamters to track that type of update. See the following code snippets for examples on how to use Custom User Data Attributes:

                                


                                    /**OBJECTIVE-C**/
                                    [ByteBrewNativeiOSPlugin AddCustomDataAttributeWithStringValue:@"username" Value:@"michael_scarn"];
                                    [ByteBrewNativeiOSPlugin AddCustomDataAttributeWithDoubleValue:@"total_hitpoints" Value:68.7];
                                    [ByteBrewNativeiOSPlugin AddCustomDataAttributeWithIntegerValue:@"dundees" Value:3];
                                    [ByteBrewNativeiOSPlugin AddCustomDataAttributeWithBooleanValue:@"loves_the_office" Value:YES];
                                  
                                  
                                    /**SWIFT**/
                                    ByteBrewNativeiOSPlugin.addCustomDataAttribute(withStringValue: "username", value: "michael_scarn")
                                    ByteBrewNativeiOSPlugin.addCustomDataAttribute(withStringValue: "total_hitpoints", value: 68.7)
                                    ByteBrewNativeiOSPlugin.addCustomDataAttribute(withStringValue: "dundees", value: 3)
                                    ByteBrewNativeiOSPlugin.addCustomDataAttribute(withStringValue: "loves_the_office", value: true)
                                  
                                                    
                                
                            

Progression Event Tracking

tag

Progression events are a great way to track linear event stages in your game to measure how players are transitioning through levels or worlds. See below for the list of progression event parameters and code snippets for progression events.

1

ProgressionType

The type of progression event. Must be one the following options:

fiber_manual_record
Started
fiber_manual_record
Completed
fiber_manual_record
Failed
2

Environment

Area or World in the game the event is located such as: Tutorial, Arena, or Level. You can choose how to define the environments in your game or app.

3

Stage

The stage of the environment that the event takes place in such as: king_arena, jungleLevel, or level_02. You can define how to define the stages in your game or app.

4

Value

The value of the event. This can be a string or float value attached to the event.

                                

                                    /**OBJECTIVE-C**/
                                    //Example Progression event where the user started a tutorial in arena 0 or first arena
                                    [ByteBrewNativeiOSPlugin AddProgressionEvent:Started Environment:@"Tutorial" Stage:@"arena0"];
                                  
                                    //Example progression event where the user has completed the kings arena and could be rewarded with 3 crowns
                                    [ByteBrewNativeiOSPlugin AddProgressionEventWithNumericValue:Completed Environment:@"Arena" Stage:@"kings_arena" Value:3];
                                  
                                  
                                  
                                    /**SWIFT**/
                                    //Example Progression event where the user started a tutorial in arena 0 or first arena
                                    ByteBrewNativeiOSPlugin.addProgressionEvent(Started, environment: "Tutorial", stage: "arena0")
                                  
                                    //Example progression event where the user has completed the kings arena and could be rewarded with 3 crowns
                                    ByteBrewNativeiOSPlugin.addProgressionEvent(withNumericValue: Completed, environment: "Arena", stage: "kings_arena", value: 3)
                                  
                                                    
                                
                            

Get User ID

tag

GetUserID method in the SDK enables you to grab the current User ID of the user in your game. This is a handy method for finding the ID for a user you want to send a specific push notification to.

                                

                                    /**OBJECTIVE-C**/
                                    // Get the string userID
                                    NSString* userID = [ByteBrewNativeiOSPlugin GetUserID];
                                  
                                  
                                  
                                    /**SWIFT**/
                                    // Get the string userID
                                    var user_id = ByteBrewNativeiOSPlugin.getUserID()
                                  
                                                                    
                                
                            

Stop Tracking Current User

tag

In the ByteBrew SDK, you have the option to stop tracking any user in your game by calling the ByteBrew StopTracking method. This will immediately stop and disable any tracking for a user. As another alternative method to disabling tracking, you can build your own consent pop-up prompt screen in your game or app and delay the initialization of ByteBrew SDK until your user has consented/agreed to your prompt.

                                

                                    /**OBJECTIVE-C**/
                                    [ByteBrewNativeiOSPlugin StopTracking];
                                  
                                  
                                  
                                    /**SWIFT**/
                                    ByteBrewNativeiOSPlugin.stopTracking()
                                  
                                                    
                                
                            

SDK FAQs

ByteBrew supports iOS version 9.0 and above.

No, you can only use one push notification service or provider to send notifications at one time. However, if you are only using ByteBrew for our other services, then you can use another platform's push notifications SDK while still using ByteBrew SDK without any issues.

No, Push Notifications has it's own internal callback, so no other callback is necessary.

A/B Tests deliver configs using your Remote Configs integration. Remote Configs delivered in milliseconds to your players after the ByteBrew SDK is initialized.

No, all events that can be sent to ByteBrew are only from our SDK.

Need some help?

Join the ByteBrew Discord community to chat with our team and other developers on the platform.