Esempio n. 1
0
        public void TrackException(string message, bool isFatal)
        {
            var bundle = new Android.OS.Bundle();

            bundle.PutString(nameof(message), message);
            bundle.PutBoolean(nameof(isFatal), isFatal);

            _fAnalytics.LogEvent("app_exception", bundle);
        }
Esempio n. 2
0
 /// <summary>
 /// Prompts use of the scanner
 /// </summary>
 public void OpenScanner()
 {
     Android.OS.Bundle bundle = new Android.OS.Bundle();
     bundle.PutBoolean(Intents.ExtraScanQrCode, true);
     scanner.StartScan(bundle);
 }