2020-07-21 20:26:52 +02:00
|
|
|
using System;
|
2020-06-14 01:18:12 +02:00
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using Android.App;
|
2020-06-30 19:06:35 +02:00
|
|
|
using Android.Content;
|
2020-06-14 01:18:12 +02:00
|
|
|
using Android.Gms.Ads;
|
2020-07-21 20:26:52 +02:00
|
|
|
using Android.Gms.Common;
|
|
|
|
using Android.Gms.Common.Apis;
|
|
|
|
using Android.Gms.Extensions;
|
|
|
|
using Android.Gms.Games;
|
2020-07-08 18:23:57 +02:00
|
|
|
using Android.Runtime;
|
2020-06-29 13:47:45 +02:00
|
|
|
using Android.Views;
|
2020-06-14 01:18:12 +02:00
|
|
|
using Android.Widget;
|
2020-07-21 20:26:52 +02:00
|
|
|
using Coroutine;
|
2020-06-14 01:18:12 +02:00
|
|
|
using GameAnalyticsSDK;
|
|
|
|
using GameAnalyticsSDK.Utilities;
|
|
|
|
using TouchyTickets;
|
2020-07-21 20:26:52 +02:00
|
|
|
using Uri = Android.Net.Uri;
|
2020-06-14 01:18:12 +02:00
|
|
|
|
|
|
|
namespace Android {
|
|
|
|
public class AndroidPlatform : Platform {
|
|
|
|
|
2020-07-21 20:26:52 +02:00
|
|
|
public const int GooglePlayLoginRequest = 9001;
|
2020-06-14 01:18:12 +02:00
|
|
|
private readonly Activity activity;
|
|
|
|
private readonly LinearLayout adLayout;
|
2020-07-21 20:26:52 +02:00
|
|
|
public GoogleApiClient GoogleApi { get; private set; }
|
2020-06-14 01:18:12 +02:00
|
|
|
|
|
|
|
public AndroidPlatform(Activity activity, LinearLayout adLayout) {
|
|
|
|
this.activity = activity;
|
|
|
|
this.adLayout = adLayout;
|
|
|
|
}
|
|
|
|
|
2020-07-21 20:26:52 +02:00
|
|
|
public override void SetupOnlineInteractions(Dictionary<string, object> analyticsJson) {
|
|
|
|
// Analytics
|
|
|
|
GameAnalytics.SetAutoDetectAppVersion(true);
|
|
|
|
GameAnalytics.Initialize(this.activity, GA_MiniJSON.JsonEncode(new Hashtable(analyticsJson)));
|
|
|
|
AndroidEnvironment.UnhandledExceptionRaiser += (o, args) => GameAnalytics.NewErrorEvent(GAErrorSeverity.Critical, args.Exception.ToString());
|
|
|
|
|
|
|
|
// Ads
|
2020-06-14 01:18:12 +02:00
|
|
|
var ad = new AdView(this.activity) {
|
|
|
|
AdUnitId = "ca-app-pub-5754829579653773/7841535920",
|
|
|
|
AdSize = AdSize.SmartBanner
|
|
|
|
};
|
|
|
|
ad.LoadAd(new AdRequest.Builder()
|
|
|
|
.AddTestDevice("14B965C6457E17D2808061ADF7E34923")
|
|
|
|
.Build());
|
|
|
|
this.adLayout.AddView(ad);
|
|
|
|
|
2020-07-21 20:26:52 +02:00
|
|
|
// Google Play game services
|
|
|
|
this.GoogleApi = new GoogleApiClient.Builder(this.activity)
|
|
|
|
.AddApi(GamesClass.API)
|
|
|
|
.AddScope(GamesClass.ScopeGames)
|
|
|
|
.AddOnConnectionFailedListener(res => {
|
|
|
|
if (res.HasResolution) {
|
|
|
|
res.StartResolutionForResult(this.activity, GooglePlayLoginRequest);
|
|
|
|
} else {
|
|
|
|
throw new GoogleApiClientConnectionException(res);
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.Build();
|
|
|
|
this.GoogleApi.Connect();
|
2020-06-14 01:18:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public override void AddResourceEvent(bool sink, string currency, float amount, string itemType, string itemId) {
|
|
|
|
GameAnalytics.NewResourceEvent(sink ? GAResourceFlowType.Sink : GAResourceFlowType.Source, currency, amount, itemType, itemId);
|
|
|
|
}
|
|
|
|
|
2020-06-29 13:47:45 +02:00
|
|
|
public override void SetKeepScreenOn(bool keep) {
|
|
|
|
if (keep) {
|
|
|
|
this.activity.Window.AddFlags(WindowManagerFlags.KeepScreenOn);
|
|
|
|
} else {
|
|
|
|
this.activity.Window.ClearFlags(WindowManagerFlags.KeepScreenOn);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-30 19:06:35 +02:00
|
|
|
public override void OpenRateLink() {
|
|
|
|
this.activity.StartActivity(new Intent(Intent.ActionView, Uri.Parse("https://play.google.com/store/apps/details?id=de.ellpeck.touchytickets")));
|
|
|
|
}
|
|
|
|
|
2020-06-14 01:18:12 +02:00
|
|
|
}
|
|
|
|
}
|