summaryrefslogtreecommitdiff
path: root/runtime/contrib/TFLiteSharp/TFLiteTestApp/TFLiteTestApp_Main.cs
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/contrib/TFLiteSharp/TFLiteTestApp/TFLiteTestApp_Main.cs')
-rw-r--r--runtime/contrib/TFLiteSharp/TFLiteTestApp/TFLiteTestApp_Main.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/runtime/contrib/TFLiteSharp/TFLiteTestApp/TFLiteTestApp_Main.cs b/runtime/contrib/TFLiteSharp/TFLiteTestApp/TFLiteTestApp_Main.cs
new file mode 100644
index 000000000..2a8f747a4
--- /dev/null
+++ b/runtime/contrib/TFLiteSharp/TFLiteTestApp/TFLiteTestApp_Main.cs
@@ -0,0 +1,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);
+ }
+ }
+}