summaryrefslogtreecommitdiff
path: root/contrib/TFLiteSharp/TFLiteTestApp/TFLiteTestApp_Main.cs
blob: 2a8f747a4093d9c45364fae98d7825f33e2dc6ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;

namespace TFLiteTestApp
{
    class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
    {
        protected override void OnCreate()
        {
            base.OnCreate();
            LoadApplication(new App());
        }

        static void Main(string[] args)
        {
            var app = new Program();
            global::Xamarin.Forms.Platform.Tizen.Forms.Init(app);
            app.Run(args);
        }
    }
}