This repository has been archived by the owner on Jul 5, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 360
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c288daf
commit 8b06e59
Showing
35 changed files
with
745 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
using Foundation; | ||
using UIKit; | ||
|
||
namespace PopupMediaCamera.iOS | ||
{ | ||
// The UIApplicationDelegate for the application. This class is responsible for launching the | ||
// User Interface of the application, as well as listening (and optionally responding) to | ||
// application events from iOS. | ||
[Register("AppDelegate")] | ||
public partial class AppDelegate : global::Xamarin.Forms.Platform.iOS.FormsApplicationDelegate | ||
{ | ||
// | ||
// This method is invoked when the application has loaded and is ready to run. In this | ||
// method you should instantiate the window, load the UI into it and then make the window | ||
// visible. | ||
// | ||
// You have 17 seconds to return from this method, or iOS will terminate your application. | ||
// | ||
public override bool FinishedLaunching(UIApplication app, NSDictionary options) | ||
{ | ||
global::Xamarin.Forms.Forms.Init(); | ||
LoadApplication(new App()); | ||
|
||
return base.FinishedLaunching(app, options); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict/> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>UIDeviceFamily</key> | ||
<array> | ||
<integer>1</integer> | ||
<integer>2</integer> | ||
</array> | ||
<key>UISupportedInterfaceOrientations</key> | ||
<array> | ||
<string>UIInterfaceOrientationPortrait</string> | ||
<string>UIInterfaceOrientationLandscapeLeft</string> | ||
<string>UIInterfaceOrientationLandscapeRight</string> | ||
</array> | ||
<key>UISupportedInterfaceOrientations~ipad</key> | ||
<array> | ||
<string>UIInterfaceOrientationPortrait</string> | ||
<string>UIInterfaceOrientationPortraitUpsideDown</string> | ||
<string>UIInterfaceOrientationLandscapeLeft</string> | ||
<string>UIInterfaceOrientationLandscapeRight</string> | ||
</array> | ||
<key>MinimumOSVersion</key> | ||
<string>6.0</string> | ||
<key>CFBundleDisplayName</key> | ||
<string>PopupMediaCamera</string> | ||
<key>CFBundleIdentifier</key> | ||
<string>com.plugin.PopupMediaCamera</string> | ||
<key>CFBundleVersion</key> | ||
<string>1.0</string> | ||
<key>CFBundleIconFiles</key> | ||
<array> | ||
<string>[email protected]</string> | ||
<string>Icon-76.png</string> | ||
<string>[email protected]</string> | ||
<string>Default.png</string> | ||
<string>[email protected]</string> | ||
<string>[email protected]</string> | ||
<string>Default-Portrait.png</string> | ||
<string>[email protected]</string> | ||
<string>Icon-Small-40.png</string> | ||
<string>[email protected]</string> | ||
<string>Icon-Small.png</string> | ||
<string>[email protected]</string> | ||
</array> | ||
<key>UILaunchStoryboardName</key> | ||
<string>LaunchScreen</string> | ||
<key>NSCalendarsUsageDescription</key> | ||
<string>Calendars Usage Access Warning</string> | ||
<key>NSRemindersUsageDescription</key> | ||
<string>Reminders Access Warning</string> | ||
<key>NSPhotoLibraryUsageDescription</key> | ||
<string>Photo Library Access Warning</string> | ||
<key>NSContactsUsageDescription</key> | ||
<string>Contacts Access Warning</string> | ||
<key>NSMicrophoneUsageDescription</key> | ||
<string>Microphone Access Warning</string> | ||
<key>NSAppleMusicUsageDescription</key> | ||
<string>Apple Music Access Warning</string> | ||
<key>NSSiriUsageDescription</key> | ||
<string>Siri Access Warning</string> | ||
<key>NSCameraUsageDescription</key> | ||
<string>Can we use your camera</string> | ||
<key>CFBundleShortVersionString</key> | ||
<string></string> | ||
</dict> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
using UIKit; | ||
|
||
namespace PopupMediaCamera.iOS | ||
{ | ||
public class Application | ||
{ | ||
// This is the main entry point of the application. | ||
static void Main(string[] args) | ||
{ | ||
// if you want to use a different Application Delegate class from "AppDelegate" | ||
// you can specify it here. | ||
UIApplication.Main(args, null, "AppDelegate"); | ||
} | ||
} | ||
} |
Oops, something went wrong.