MainApplication.cs 449 B

12345678910111213141516171819202122
  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. }
  18. }