File tree 5 files changed +78
-2
lines changed
mobile/examples/super_resolution/MAUI/MauiSuperResolution
5 files changed +78
-2
lines changed Original file line number Diff line number Diff line change 53
53
<PackageReference Include =" Microsoft.ML.OnnxRuntime.Managed" Version =" 1.19.2" />
54
54
</ItemGroup >
55
55
56
-
57
-
58
56
<ItemGroup >
59
57
<MauiImage Update =" Resources\Images\onnxruntime_logo.png" >
60
58
<CopyToOutputDirectory >Never</CopyToOutputDirectory >
Original file line number Diff line number Diff line change
1
+ using Foundation ;
2
+
3
+ namespace MauiSuperResolution ;
4
+
5
+ [ Register ( "AppDelegate" ) ]
6
+ public class AppDelegate : MauiUIApplicationDelegate
7
+ {
8
+ protected override MauiApp CreateMauiApp ( ) => MauiProgram . CreateMauiApp ( ) ;
9
+ }
10
+
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version =" 1.0" >
4
+ <!-- See https://aka.ms/maui-publish-app-store#add-entitlements for more information about adding entitlements.-->
5
+ <dict >
6
+ <!-- App Sandbox must be enabled to distribute a MacCatalyst app through the Mac App Store. -->
7
+ <key >com.apple.security.app-sandbox </key >
8
+ <true />
9
+ <!-- When App Sandbox is enabled, this value is required to open outgoing network connections. -->
10
+ <key >com.apple.security.network.client </key >
11
+ <true />
12
+ </dict >
13
+ </plist >
14
+
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version =" 1.0" >
4
+ <dict >
5
+ <!-- The Mac App Store requires you specify if the app uses encryption. -->
6
+ <!-- Please consult https://developer.apple.com/documentation/bundleresources/information_property_list/itsappusesnonexemptencryption -->
7
+ <!-- <key>ITSAppUsesNonExemptEncryption</key> -->
8
+ <!-- Please indicate <true/> or <false/> here. -->
9
+
10
+ <!-- Specify the category for your app here. -->
11
+ <!-- Please consult https://developer.apple.com/documentation/bundleresources/information_property_list/lsapplicationcategorytype -->
12
+ <!-- <key>LSApplicationCategoryType</key> -->
13
+ <!-- <string>public.app-category.YOUR-CATEGORY-HERE</string> -->
14
+ <key >UIDeviceFamily </key >
15
+ <array >
16
+ <integer >2 </integer >
17
+ </array >
18
+ <key >UIRequiredDeviceCapabilities </key >
19
+ <array >
20
+ <string >arm64 </string >
21
+ </array >
22
+ <key >UISupportedInterfaceOrientations </key >
23
+ <array >
24
+ <string >UIInterfaceOrientationPortrait </string >
25
+ <string >UIInterfaceOrientationLandscapeLeft </string >
26
+ <string >UIInterfaceOrientationLandscapeRight </string >
27
+ </array >
28
+ <key >UISupportedInterfaceOrientations~ipad </key >
29
+ <array >
30
+ <string >UIInterfaceOrientationPortrait </string >
31
+ <string >UIInterfaceOrientationPortraitUpsideDown </string >
32
+ <string >UIInterfaceOrientationLandscapeLeft </string >
33
+ <string >UIInterfaceOrientationLandscapeRight </string >
34
+ </array >
35
+ <key >XSAppIconAssets </key >
36
+ <string >Assets.xcassets/appicon.appiconset </string >
37
+ </dict >
38
+ </plist >
Original file line number Diff line number Diff line change
1
+ using ObjCRuntime ;
2
+ using UIKit ;
3
+
4
+ namespace MauiSuperResolution ;
5
+
6
+ public class Program
7
+ {
8
+ // This is the main entry point of the application.
9
+ static void Main ( string [ ] args )
10
+ {
11
+ // if you want to use a different Application Delegate class from "AppDelegate"
12
+ // you can specify it here.
13
+ UIApplication . Main ( args , null , typeof ( AppDelegate ) ) ;
14
+ }
15
+ }
16
+
You can’t perform that action at this time.
0 commit comments