Unity

Learn how to integrate ByteBrew's light-weight Unity SDK.

Unity SDK Integration

tag Watch Video play_circle

Follow the steps below to integrate the ByteBrew SDK or watch the tutorial video for a step by step walkthrough:

Step 1

Import ByteBrew SDK

Import ByteBrew Unity SDK to your project.

(Android Only) If you don't use Auto-Resolve on your External Dependency Manager, then after importing the SDK, go to Assets, find External Dependency Manager, select Android Resolver, and click Force Resolve.

Step 2

Create ByteBrew Object

Create the ByteBrew GameObject by following the steps below:

1

Go to Window

2

Select ByteBrew

3

Choose "Create ByteBrew GameObject". Make sure to place GameObject in your first scene.

Step 3

Enable Platforms

To enable platforms:

1

Go to Window

2

Select ByteBrew

3

Choose "Select ByteBrew settings"

4

Enable which platforms (iOS & Android) you want to track on the Unity ByteBrew settings inspector panel.

Step 4

Go to your ByteBrew Dashboard

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

Step 5

Input Game Keys and SDK Key into Unity

Now that you've located your Game IDs and SDK Key, input the platform specific Game IDs and SDK Key from your game on the ByteBrew dashboard into the Unity ByteBrew settings inspector panel.

Step 6

Initialize ByteBrew

After inputing your Game IDs and SDK Key, initialize ByteBrew using the code below at the beginning of your game to start capturing sessions and events:

                                
                                
                                
                                // Initialize ByteBrew
                                ByteBrew.InitializeByteBrew();
                                
                                
                            
Step 7

iOS Only (Optional) - Call ByteBrew's App Tracking Transparency (ATT) wrapper

ByteBrew offers our own ATT Handler, so you do not have to call native code in your unity application.

If you use our ATT Handler, you must do the following in your info.plist:

1

Use the Xcode Property List Editor to add: Privacy - Tracking Usage Description.

2

In the value string field enter a sentence or statement for the reason behind you tracking request.

                                
                                
                                
                                // Call ByteBrew ATT Wrapper
                                ByteBrew.requestForAppTrackingTransparency((status) =>
                                {
                                    //Case 0: ATTrackingManagerAuthorizationStatusAuthorized
                                    //Case 1: ATTrackingManagerAuthorizationStatusDenied
                                    //Case 2: ATTrackingManagerAuthorizationStatusRestricted
                                    //Case 3: ATTrackingManagerAuthorizationStatusNotDetermined
                                    Debug.Log("ByteBrew Got a status of: " + status);
                                    ByteBrew.InitializeByteBrew();
                                });
                                
                                
                            
Step 8

Exporting iOS Requirements

To export for iOS, ByteBrew requires the following three (3) iOS Frameworks:

1

Security.Framework

2

AdServices.Framework

3

AdSupport.Framework

Each of these listed frameworks should be implemented in your final xcode project as frameworks.

Custom Events Tracking

tagWatch Video play_circle

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:

                                
                                
                                    //Basic Custom Event without any sub-parameters
                                    ByteBrew.NewCustomEvent("eventName");
                                
                                
                            

Dictionary Custom Event Tracking Method:

To easily add additional custom sub-parameters to an event you can use the dictionary method below:

                                
                                    //Custom Event Dictionary Example with sub-parameters
                                    var eventParameters = new Dictionary<string, string>()
                                    {
                                        { "key_name", "value" },
                                        { "key_name1", "value1" },
                                        { "key_name2", "value2" },
                                        { "key_name3", "value3" },
                                        { "key_name4", "value4" },
                                        { "key_name5", "value5" }
                                    };
                                    ByteBrew.NewCustomEvent("eventName", eventParameters);

                                    //Example Event
                                    var mapCheckpointParameters = new Dictionary<string, string>()
                                    {
                                        { "earned", "KARMA" },
                                        { "amount", "250" },
                                        { "character", "Hunterwizard" },
                                        { "selectedPowerup", "ExtraArrow" },
                                        { "level", "32" },
                                        { "runDeathCount", "2" }
                                    };
                                    ByteBrew.NewCustomEvent("MapCheckPointHit", mapCheckpointParameters);
                                
                                
                            

Custom Event Tracking Method:

                                
                                
                                    
                                    //Custom Event Format with sub-parameters
                                    ByteBrew.NewCustomEvent("eventName", "key_name1=value1;key_name2=value2;key_name3=value3;key_name4=value4;");

                                    //Example Event
                                    ByteBrew.NewCustomEvent("LevelStarted", "level=25;character=AlienSpaceMan;weapon=megablaster;powerup=extralife;");
                                
                                
                            

Remote Configs & A/B Tests

tagWatch Video play_circle

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 watching the tutorial video or 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:

                                
                                
                                    
                                    
                                //Call the Action handler 
                                ByteBrew.RemoteConfigsUpdated(() =>
                                {
                                    //Do Whatever you want here once the config is updated
                                });

                                //Check if the remote configs are ready and set
                                ByteBrew.HasRemoteConfigsBeenSet();

                                    
                                
                                
                            
2

Retrieve the Configs

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

                                
                                
                                    
                                    
                                //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
                                ByteBrew.GetRemoteConfigForKey("dailyWeapon", "goldRevolver");

                                    
                                
                                
                            

Push Notifications

tagWatch Video play_circle

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 or watch the tutorial video series.

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:

                                
                                
                                    
                                    
                                
                                ByteBrew.StartPushNotifications();

                                    
                                
                                
                            
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 Android Manifest (Required Android Only)

                                
                                    <uses-permission android:name="android.permission.POST_NOTIFICATIONS"/>
                                
                            

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

tagWatch Video play_circle

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 or watch our tutorial video.

Track Basic In-App Purchases

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

                                
                                
   
                                
                                ByteBrew.TrackInAppPurchaseEvent("Apple App Store", "USD", 5.99f, "currencyPack01", "Currencies");

                                    
                                
                                
                            

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:

                                
                                
   

                                //JSON Format ex. string json = "{\"firstname\":\"john\", \"lastname\":\"doe\",\"age\":30}";

                                //Retrieve the iOS receipt from the purchase event that occurs. We will validate it server side so you can view valid purchases in you dashboard.
                                string iosReceipt = "...";
                                ByteBrew.ValidateiOSInAppPurchaseEvent("Apple App Store", "USD", 1.99f, "NoAds", "NoAds", iosReceipt,
                                    purchaseResultData => {
                                        Debug.Log("ByteBrew Purchase Processed: " + purchaseResultData.purchaseProcessed);   //bool telling if the purchase even went to the server to get checked
                                        Debug.Log("ByteBrew Purchase Is Valid: " + purchaseResultData.isValid);              //bool signaling if the purchase is real or fake
                                        Debug.Log("ByteBrew Purchase Message: " + purchaseResultData.message);               //Message from the server telling the explaination behind the decision
                                        Debug.Log("ByteBrew Purchase timestamp: " + purchaseResultData.timestamp);
                                    });

                                //Retrieve the Android receipt and Signature from the purchase event that occurs. We will validate it server side so you can view valid purchases in you dashboard.
                                string googleReceipt = "...";
                                string googleSignature = "...";
                                ByteBrew.ValidateGoogleInAppPurchaseEvent("Google Play Store", "USD", 1.99f, "NoAds", "NoAds", googleReceipt, googleSignature,
                                    purchaseResultData => {
                                        Debug.Log("ByteBrew Purchase Processed: " + purchaseResultData.purchaseProcessed);  //bool telling if the purchase even went to the server to get checked
                                        Debug.Log("ByteBrew Purchase Is Valid: " + purchaseResultData.isValid);             //bool signaling if the purchase is real or fake
                                        Debug.Log("ByteBrew Purchase Message: " + purchaseResultData.message);              //Message from the server telling the explaination behind the decision
                                        Debug.Log("ByteBrew Purchase timestamp: " + purchaseResultData.timestamp);
                                    });
                                
                            

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:

                                
                                
   
                                //JSON Format ex. string json = "{\"firstname\":\"john\", \"lastname\":\"doe\",\"age\":30}";

                                //Retrieve the iOS receipt from the purchase event that occurs. We will validate it server side so you can view valid purchases in you dashboard.
                                string iosReceipt = "...";
                                ByteBrew.TrackiOSInAppPurchaseEvent("Apple App Store", "USD", 5.99f, "currencyPack01", "Currencies", iosReceipt);

                                //Retrieve the Android receipt and Signature from the purchase event that occurs. We will validate it server side so you can view valid purchases in you dashboard.
                                string googleReceipt = "...";
                                string googleSignature = "...";
                                ByteBrew.TrackGoogleInAppPurchaseEvent("Google Play Store", "USD", 5.99f, "currencyPack01", "Currencies", googleReceipt, googleSignature);
                                
                            

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:

                                
                                
                                // Record the Placement Type, Location of the placement, ad unit ID, and Network
                                ByteBrew.TrackAdEvent("Interstitial", "EndOfLevel", "3253k3302-3r3j4i343-3nij343-405403", "AdMob");

                                //Some ad event paramters can be ommited like so
                                ByteBrew.TrackAdEvent("Interstitial", "EndOfLevel");
                                ByteBrew.TrackAdEvent("Interstitial", "EndOfLevel", "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:

                                
                                
                                
                                ByteBrew.SetCustomUserDataAttribute("dundees", 3);
                                ByteBrew.SetCustomUserDataAttribute("loves_the_office", 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 of float value.

                                

                                
                                //Example Progression event where the user started a tutorial in arena 0 or first arena
                                ByteBrew.NewProgressionEvent(ByteBrewProgressionTypes.Started, "Tutorial", "arena0");

                                //Example progression event where the user has completed the kings arena and could be rewarded with 3 crowns
                                ByteBrew.NewProgressionEvent(ByteBrewProgressionTypes.Completed, "Arena", "kings_arena", 3f);

                                //Basic Example of Started Progression event with basic levels
                                ByteBrew.NewProgressionEvent(ByteBrewProgressionTypes.Started, "Levels", "level_01");

                                //Basic Example of Completed Progression event with basic levels
                                ByteBrew.NewProgressionEvent(ByteBrewProgressionTypes.Completed, "Levels", "level_01");

                                
                                
                            

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.

                                
                                
                                
                                
                                // Get the string userID
                                ByteBrew.GetUserID();


                                
                                
                            

Initialization Callback

tag

In the SDK, you can use an initialization callback to get a True/False boolean to determine if ByteBrew SDK has completed the initialization.

                                
                                
                                
                                ByteBrew.IsByteBrewInitialized();

                                
                                
                            

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.

                                
                                
                                
                                
                                ByteBrew.StopTracking();


                                
                                
                            

ProGuard Setup for ByteBrew SDK

tag

If you have ProGuard or Minify enabled in your game, add the following to your "proguard-user.txt" file.

                                
                                
                                
                                
                                
                                -keep class com.bytebrew.** {*; }



                                
                                
                            

Updating ByteBrew SDK

tagWatch Video play_circle

Checkout how to update the ByteBrew SDK by watching our short 1 minute tutorial video or following the steps below:

1

Remove the older ByteBrew SDK

2

Import the new ByteBrew SDK you're upgrading to.

3

Select ByteBrew Setting by clicking (1) Window, then (2) ByteBrew in the dropdown, then finally (3) select ByteBrew Settings

4

Re-input your SDK Keys for your game.


SDK FAQs

Check to make sure that you've re-inputted your Game IDs and SDK Keys after updating the ByteBrew SDK.

If you're receiving a 401 Error in your game code, re-confirm that you have correctly inputting all your game's information including: SDK Key, Game IDs, and Bundle ID.

If you see a NoClassDefFoundError for a third party library (like Google Advertising ID), then use the External Dependency force resolve. However, if the class that is missing is a ByteBrew class, then check your ProGaurd settings.

If you track custom events in the same scene you initialize the ByteBrew SDK, then there is a chance your custom events wont get tracked as the SDK might not be finished initializing. To solve this, use the Initialization callback in the SDK to determine when the SDK has finished initialization before tracking custom events.

If you call for remote configs within the same scene you initialize the ByteBrew SDK, then there is a chance your remote configs wont get loaded as the SDK might not be finished initializing. To solve this, use the Initialization callback in the SDK to determine when the SDK has finished initialization before calling remote configs.

ByteBrew supports Android 5.1 and above & 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.

API Level 22 (Android 5.1)

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.