View template_apiconnection.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", | |
"contentVersion": "1.0.0.0", | |
"parameters": { | |
"environmentName": { | |
"type": "string" | |
}, | |
"resourceType": { | |
"type": "string", | |
"defaultValue": "eventhubs" |
View AppDelegate.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Foundation; | |
using Microsoft.AppCenter; | |
using Microsoft.AppCenter.Analytics; | |
using Microsoft.AppCenter.Crashes; | |
using UIKit; | |
namespace Demo.iOS | |
{ | |
[Register("AppDelegate")] | |
public partial class AppDelegate : global::Xamarin.Forms.Platform.iOS.FormsApplicationDelegate |
View MainActivity.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Android.App; | |
using Android.Content.PM; | |
using Android.Runtime; | |
using Android.OS; | |
using Microsoft.AppCenter.Analytics; | |
using Microsoft.AppCenter.Crashes; | |
using Microsoft.AppCenter; | |
namespace Demo.Droid | |
{ |
View Example.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
try | |
{ | |
... | |
} | |
catch (Exception ex) | |
{ | |
var properties = new Dictionary<string, string> | |
{ | |
{ "Category", "Sample" }, | |
{ "ErrorMessage", ex.Message }, |
View AppDelegate.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[AppCenterReactNative register]; | |
[AppCenterReactNativeAnalytics registerWithInitiallyEnabled:true]; | |
[AppCenterReactNativeCrashes registerWithAutomaticProcessing]; |
View AppDelegate.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import <AppCenterReactNative.h> | |
#import <AppCenterReactNativeAnalytics.h> | |
#import <AppCenterReactNativeCrashes.h> |
View AppCenter-Config.plist
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "https://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>AppSecret</key> | |
<string>0f00eef5-4c10-41c6-bb94-240fa3f86194</string> | |
</dict> | |
</plist> |
View command
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pod install --repo-update |
View command
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
npm install appcenter appcenter-analytics appcenter-crashes --save-exact |
View strings.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<resources> | |
<string name="app_name">Sample</string> | |
<string name="appCenterCrashes_whenToSendCrashes" moduleConfig="true" translatable="false">DO_NOT_ASK_JAVASCRIPT</string> | |
<string name="appCenterAnalytics_whenToEnableAnalytics" moduleConfig="true" translatable="false">ALWAYS_SEND</string> | |
</resources> |
NewerOlder