12345678910111213141516171819202122 |
- 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)
- {
- }
-
- }
- }
|