Posted on

How to Use Azure Functions for Playfab Cloud Scripts

In this tutorial, I will show you how to create and use Azure functions for PlayFab scripts. To create an Azure function you will go down to your workspace window in visual studio code and click the plus sign you can then select create function. You will want to use an HTTP Trigger give it a name and a namespace and select Anonymous. This will then create a Azure function template. To use Playfab you will want to make sure you install the Playfab SDK. You will then want to do a bit of set up for you function after which you can create your C# script just as you would inside Unity. The main thing you want to do inside this function is your Requests to Playfab. You use Azure and playfab cloud scripts to run requests that need to be more secure than running them on the client’s device.

Posted on

How to Debug Android Apps if Crashing using Android Studio Logcat

In this tutorial, I will show you how to debug your android apps if crashing after they have been deployed to a device. We will do this using the Android studio logcat. The android studio logcat is like a console window for your running device. after plugin in your phone, the logcat will begin printing messages from your device. If your app is crashing at some point you should be able to see fatal error messages in the logcat. Once you get an error you should be able to search the internet for solutions.