MainApplication.cs 531 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using Android.App;
  3. using Android.Runtime;
  4. namespace comal.timesheet.Droid
  5. {
  6. #if DEBUG
  7. [Application(Debuggable = true, UsesCleartextTraffic = true)]
  8. #else
  9. [Application(Debuggable = false, UsesCleartextTraffic = true)]
  10. #endif
  11. public class MainApplication : Application
  12. {
  13. public MainApplication(IntPtr handle, JniHandleOwnership transer)
  14. : base(handle, transer)
  15. {
  16. }
  17. public override void OnCreate()
  18. {
  19. base.OnCreate();
  20. }
  21. }
  22. }