Go to pubspec.yaml and add dependency from here
app_icon needs to be a added as a drawable resource to the Android head project. Path should be as follows
Go to pubspec.yaml and add dependency from here
app_icon needs to be a added as a drawable resource to the Android head project. Path should be as follows
| // Canvase should be Screen Space - Camera | |
| // Attach a Event Trigger Script to image you want to Drag Drop | |
| // Add Begin Drag and Drap Event Listener | |
| // Attach this script to that image | |
| using UnityEngine; | |
| using UnityEngine.UI; | |
| using System.Collections; | |
| using UnityEngine.EventSystems; |
| using UnityEngine; | |
| using System.Collections; | |
| public class RequestService : MonoBehaviour | |
| { | |
| public string GetUrl = "http://hmkcode.appspot.com/rest/controller/get.json"; | |
| public string PostUrl = "http://androidexample.com/media/webservice/httppost.php"; | |
| public string textRetrieved; |
| using UnityEngine; | |
| using System.Collections; | |
| public class MySingletonClass : MonoBehaviour { | |
| /// Static instance of Singleton Class which allows it to be accessed by any other script | |
| private static MySingletonClass _instance = null; | |
| /// <summary> | |
| /// Gets the instance of the Singleton Class |
| // Unity Ad Controller for multiple Ad Networks | |
| // Copyrights SKill Knight Studios 2015 | |
| // Author: Noor Ali Butt | |
| // v1.0 | |
| using UnityEngine; | |
| using UnityEngine.UI; | |
| using System.Collections; | |
| using ChartboostSDK; | |
| using GoogleMobileAds.Api; |