MainActivity.cs 591 B

1234567891011121314151617181920212223
  1. using Android.App;
  2. using Android.OS;
  3. using HockeyApp;
  4. namespace AndroidHockeyApp
  5. {
  6. [Activity(Label = "AndroidHockeyApp", MainLauncher = true, Icon = "@drawable/icon")]
  7. public class MainActivity : Activity
  8. {
  9. public const string HOCKEYAPP_APPID = "HOCKEYAPP_APPID";
  10. protected override void OnCreate(Bundle bundle)
  11. {
  12. base.OnCreate(bundle);
  13. CrashManager.Register(this, HOCKEYAPP_APPID);
  14. // Set our view from the "main" layout resource
  15. // SetContentView (Resource.Layout.YourMainView);
  16. }
  17. }
  18. }