| 123456789101112131415161718192021222324252627 | 
							- using System;
 
- using Android.App;
 
- using Android.Runtime;
 
- namespace comal.timesheet.Droid
 
- {
 
- #if DEBUG
 
-     [Application(Debuggable = true, UsesCleartextTraffic = true)]
 
- #else
 
-     [Application(Debuggable = false, UsesCleartextTraffic = true)]
 
- #endif
 
-     public class MainApplication : Application
 
-     {
 
-         public MainApplication(IntPtr handle, JniHandleOwnership transer)
 
-           : base(handle, transer)
 
-         {
 
-         }
 
-         public override void OnCreate()
 
-         {
 
-             base.OnCreate();
 
-         }
 
-     }
 
- }
 
 
  |