Add the option to check Internet privilege in dotnettool for the FOTA
[platform/core/dotnet/launcher.git] / tests / Apps / Launcher_TC_PLUGIN_10 / Launcher_TC_PLUGIN_10 / Launcher_TC_PLUGIN_10 / Launcher_TC_PLUGIN_10.cs
1 using System;\r
2 using System.Collections.Generic;\r
3 using System.Linq;\r
4 using System.Text;\r
5 \r
6 using Xamarin.Forms;\r
7 \r
8 namespace Launcher_TC_PLUGIN_10\r
9 {\r
10     public class App : Application\r
11     {\r
12         public App()\r
13         {\r
14             // The root page of your application\r
15             MainPage = new ContentPage\r
16             {\r
17                 Content = new StackLayout\r
18                 {\r
19                     VerticalOptions = LayoutOptions.Center,\r
20                     Children = {\r
21                         new Label {\r
22                             HorizontalTextAlignment = TextAlignment.Center,\r
23                             Text = "Welcome to Xamarin Forms!"\r
24                         }\r
25                     }\r
26                 }\r
27             };\r
28         }\r
29 \r
30         protected override void OnStart()\r
31         {\r
32             // Handle when your app starts\r
33         }\r
34 \r
35         protected override void OnSleep()\r
36         {\r
37             // Handle when your app sleeps\r
38         }\r
39 \r
40         protected override void OnResume()\r
41         {\r
42             // Handle when your app resumes\r
43         }\r
44     }\r
45 }\r