From: Shane Neuville Date: Mon, 29 Jul 2019 03:12:22 +0000 (-0600) Subject: remove sandbox (#6993) X-Git-Tag: accepted/tizen/5.5/unified/20200421.150457~284 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e77be557165bc35005ea92038f9db63e9b7f9a6f;p=platform%2Fcore%2Fcsapi%2Fxsf.git remove sandbox (#6993) --- diff --git a/Xamarin.Forms.Sandbox.Android/Assets/AboutAssets.txt b/Xamarin.Forms.Sandbox.Android/Assets/AboutAssets.txt deleted file mode 100644 index ca673c6..0000000 --- a/Xamarin.Forms.Sandbox.Android/Assets/AboutAssets.txt +++ /dev/null @@ -1,19 +0,0 @@ -Any raw assets you want to be deployed with your application can be placed in -this directory (and child directories) and given a Build Action of "AndroidAsset". - -These files will be deployed with you package and will be accessible using Android's -AssetManager, like this: - -public class ReadAsset : Activity -{ - protected override void OnCreate (Bundle bundle) - { - base.OnCreate (bundle); - - InputStream input = Assets.Open ("my_asset.txt"); - } -} - -Additionally, some Android functions will automatically load asset files: - -Typeface tf = Typeface.CreateFromAsset (Context.Assets, "fonts/samplefont.ttf"); diff --git a/Xamarin.Forms.Sandbox.Android/MainActivity.cs b/Xamarin.Forms.Sandbox.Android/MainActivity.cs deleted file mode 100644 index 1f7693a..0000000 --- a/Xamarin.Forms.Sandbox.Android/MainActivity.cs +++ /dev/null @@ -1,26 +0,0 @@ -using System; - -using Android.App; -using Android.Content.PM; -using Android.Runtime; -using Android.Views; -using Android.Widget; -using Android.OS; - -namespace Xamarin.Forms.Sandbox.Droid -{ - [Activity(Label = "Xamarin.Forms.Sandbox", Icon = "@mipmap/icon", Theme = "@style/MainTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation)] - public class MainActivity : global::Xamarin.Forms.Platform.Android.FormsAppCompatActivity - { - protected override void OnCreate(Bundle savedInstanceState) - { - TabLayoutResource = Resource.Layout.Tabbar; - ToolbarResource = Resource.Layout.Toolbar; - - base.OnCreate(savedInstanceState); - global::Xamarin.Forms.Forms.Init(this, savedInstanceState); - global::Xamarin.Forms.FormsMaterial.Init(this, savedInstanceState); - LoadApplication(new App()); - } - } -} \ No newline at end of file diff --git a/Xamarin.Forms.Sandbox.Android/Properties/AndroidManifest.xml b/Xamarin.Forms.Sandbox.Android/Properties/AndroidManifest.xml deleted file mode 100644 index 0428864..0000000 --- a/Xamarin.Forms.Sandbox.Android/Properties/AndroidManifest.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/Xamarin.Forms.Sandbox.Android/Properties/AssemblyInfo.cs b/Xamarin.Forms.Sandbox.Android/Properties/AssemblyInfo.cs deleted file mode 100644 index 66d7d8f..0000000 --- a/Xamarin.Forms.Sandbox.Android/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,4 +0,0 @@ -using Android.App; - -[assembly: UsesPermission(Android.Manifest.Permission.Internet)] -[assembly: UsesPermission(Android.Manifest.Permission.WriteExternalStorage)] diff --git a/Xamarin.Forms.Sandbox.Android/Resources/AboutResources.txt b/Xamarin.Forms.Sandbox.Android/Resources/AboutResources.txt deleted file mode 100644 index cb30f20..0000000 --- a/Xamarin.Forms.Sandbox.Android/Resources/AboutResources.txt +++ /dev/null @@ -1,50 +0,0 @@ -Images, layout descriptions, binary blobs and string dictionaries can be included -in your application as resource files. Various Android APIs are designed to -operate on the resource IDs instead of dealing with images, strings or binary blobs -directly. - -For example, a sample Android app that contains a user interface layout (main.xml), -an internationalization string table (strings.xml) and some icons (drawable-XXX/icon.png) -would keep its resources in the "Resources" directory of the application: - -Resources/ - drawable-hdpi/ - icon.png - - drawable-ldpi/ - icon.png - - drawable-mdpi/ - icon.png - - layout/ - main.xml - - values/ - strings.xml - -In order to get the build system to recognize Android resources, set the build action to -"AndroidResource". The native Android APIs do not operate directly with filenames, but -instead operate on resource IDs. When you compile an Android application that uses resources, -the build system will package the resources for distribution and generate a class called -"Resource" that contains the tokens for each one of the resources included. For example, -for the above Resources layout, this is what the Resource class would expose: - -public class Resource { - public class drawable { - public const int icon = 0x123; - } - - public class layout { - public const int main = 0x456; - } - - public class strings { - public const int first_string = 0xabc; - public const int second_string = 0xbcd; - } -} - -You would then use R.drawable.icon to reference the drawable/icon.png file, or Resource.layout.main -to reference the layout/main.xml file, or Resource.strings.first_string to reference the first -string in the dictionary file values/strings.xml. diff --git a/Xamarin.Forms.Sandbox.Android/Resources/drawable/coffee.png b/Xamarin.Forms.Sandbox.Android/Resources/drawable/coffee.png deleted file mode 100644 index 350257c..0000000 Binary files a/Xamarin.Forms.Sandbox.Android/Resources/drawable/coffee.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.Android/Resources/layout/Tabbar.axml b/Xamarin.Forms.Sandbox.Android/Resources/layout/Tabbar.axml deleted file mode 100644 index ad1f87d..0000000 --- a/Xamarin.Forms.Sandbox.Android/Resources/layout/Tabbar.axml +++ /dev/null @@ -1,11 +0,0 @@ - - diff --git a/Xamarin.Forms.Sandbox.Android/Resources/layout/Toolbar.axml b/Xamarin.Forms.Sandbox.Android/Resources/layout/Toolbar.axml deleted file mode 100644 index aabd0a3..0000000 --- a/Xamarin.Forms.Sandbox.Android/Resources/layout/Toolbar.axml +++ /dev/null @@ -1,9 +0,0 @@ - - diff --git a/Xamarin.Forms.Sandbox.Android/Resources/mipmap-anydpi-v26/icon.xml b/Xamarin.Forms.Sandbox.Android/Resources/mipmap-anydpi-v26/icon.xml deleted file mode 100644 index 88d1d0a..0000000 --- a/Xamarin.Forms.Sandbox.Android/Resources/mipmap-anydpi-v26/icon.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/Xamarin.Forms.Sandbox.Android/Resources/mipmap-anydpi-v26/icon_round.xml b/Xamarin.Forms.Sandbox.Android/Resources/mipmap-anydpi-v26/icon_round.xml deleted file mode 100644 index 88d1d0a..0000000 --- a/Xamarin.Forms.Sandbox.Android/Resources/mipmap-anydpi-v26/icon_round.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/Xamarin.Forms.Sandbox.Android/Resources/mipmap-hdpi/icon.png b/Xamarin.Forms.Sandbox.Android/Resources/mipmap-hdpi/icon.png deleted file mode 100644 index 4623ca2..0000000 Binary files a/Xamarin.Forms.Sandbox.Android/Resources/mipmap-hdpi/icon.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.Android/Resources/mipmap-hdpi/launcher_foreground.png b/Xamarin.Forms.Sandbox.Android/Resources/mipmap-hdpi/launcher_foreground.png deleted file mode 100644 index a89e5bb..0000000 Binary files a/Xamarin.Forms.Sandbox.Android/Resources/mipmap-hdpi/launcher_foreground.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.Android/Resources/mipmap-mdpi/icon.png b/Xamarin.Forms.Sandbox.Android/Resources/mipmap-mdpi/icon.png deleted file mode 100644 index 9b1d25e..0000000 Binary files a/Xamarin.Forms.Sandbox.Android/Resources/mipmap-mdpi/icon.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.Android/Resources/mipmap-mdpi/launcher_foreground.png b/Xamarin.Forms.Sandbox.Android/Resources/mipmap-mdpi/launcher_foreground.png deleted file mode 100644 index 431a8a0..0000000 Binary files a/Xamarin.Forms.Sandbox.Android/Resources/mipmap-mdpi/launcher_foreground.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.Android/Resources/mipmap-xhdpi/icon.png b/Xamarin.Forms.Sandbox.Android/Resources/mipmap-xhdpi/icon.png deleted file mode 100644 index 844dfe5..0000000 Binary files a/Xamarin.Forms.Sandbox.Android/Resources/mipmap-xhdpi/icon.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.Android/Resources/mipmap-xhdpi/launcher_foreground.png b/Xamarin.Forms.Sandbox.Android/Resources/mipmap-xhdpi/launcher_foreground.png deleted file mode 100644 index 9e9e4f8..0000000 Binary files a/Xamarin.Forms.Sandbox.Android/Resources/mipmap-xhdpi/launcher_foreground.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.Android/Resources/mipmap-xxhdpi/icon.png b/Xamarin.Forms.Sandbox.Android/Resources/mipmap-xxhdpi/icon.png deleted file mode 100644 index e20ec9a..0000000 Binary files a/Xamarin.Forms.Sandbox.Android/Resources/mipmap-xxhdpi/icon.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.Android/Resources/mipmap-xxhdpi/launcher_foreground.png b/Xamarin.Forms.Sandbox.Android/Resources/mipmap-xxhdpi/launcher_foreground.png deleted file mode 100644 index 5f1e135..0000000 Binary files a/Xamarin.Forms.Sandbox.Android/Resources/mipmap-xxhdpi/launcher_foreground.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.Android/Resources/mipmap-xxxhdpi/icon.png b/Xamarin.Forms.Sandbox.Android/Resources/mipmap-xxxhdpi/icon.png deleted file mode 100644 index 8a08bf7..0000000 Binary files a/Xamarin.Forms.Sandbox.Android/Resources/mipmap-xxxhdpi/icon.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png b/Xamarin.Forms.Sandbox.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png deleted file mode 100644 index aca9f8d..0000000 Binary files a/Xamarin.Forms.Sandbox.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.Android/Resources/values/colors.xml b/Xamarin.Forms.Sandbox.Android/Resources/values/colors.xml deleted file mode 100644 index d9f6e0b..0000000 --- a/Xamarin.Forms.Sandbox.Android/Resources/values/colors.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - #FFFFFF - #3F51B5 - #303F9F - #FF4081 - diff --git a/Xamarin.Forms.Sandbox.Android/Resources/values/styles.xml b/Xamarin.Forms.Sandbox.Android/Resources/values/styles.xml deleted file mode 100644 index 43b0a58..0000000 --- a/Xamarin.Forms.Sandbox.Android/Resources/values/styles.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - diff --git a/Xamarin.Forms.Sandbox.Android/Xamarin.Forms.Sandbox.Android.csproj b/Xamarin.Forms.Sandbox.Android/Xamarin.Forms.Sandbox.Android.csproj deleted file mode 100644 index 7a5f7db..0000000 --- a/Xamarin.Forms.Sandbox.Android/Xamarin.Forms.Sandbox.Android.csproj +++ /dev/null @@ -1,129 +0,0 @@ - - - - Debug - AnyCPU - {FDBEC08E-9452-4167-BE3B-30653190DE1E} - {EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - {c9e5eea5-ca05-42a1-839b-61506e0a37df} - Library - Xamarin.Forms.Sandbox.Droid - Xamarin.Forms.Sandbox.Android - True - Resources\Resource.designer.cs - Resource - Properties\AndroidManifest.xml - Resources - Assets - v9.0 - Xamarin.Android.Net.AndroidClientHandler - - - - - true - portable - false - bin\Debug - DEBUG; - prompt - 4 - None - d8 - - - true - pdbonly - true - bin\Release - prompt - 4 - true - false - Full - d8 - r8 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - {6e53feb1-1100-46ae-8013-17bba35cc197} - Xamarin.Forms.Platform.Android (Forwarders) - - - {e1586ce6-8eac-4388-a15a-1aabf108b5f8} - Xamarin.Forms.Material.Android - - - {3b72465b-acae-43ae-9327-10f372fe5f80} - Xamarin.Forms.Platform.Android.FormsViewGroup - - - {0e16e70a-d6dd-4323-ad5d-363abff42d6a} - Xamarin.Forms.Platform.Android - - - {57B8B73D-C3B5-4C42-869E-7B2F17D354AC} - Xamarin.Forms.Core - - - {e155c410-e5de-464d-9ed7-2b1e672438ed} - Xamarin.Forms.Sandbox - - - - - MSBuild:UpdateGeneratedFiles - Designer - - - - - \ No newline at end of file diff --git a/Xamarin.Forms.Sandbox.Android/proguard.cfg b/Xamarin.Forms.Sandbox.Android/proguard.cfg deleted file mode 100644 index a00f7f4..0000000 --- a/Xamarin.Forms.Sandbox.Android/proguard.cfg +++ /dev/null @@ -1,4 +0,0 @@ --keep class android.support.v7.widget.FitWindowsFrameLayout { *; } --dontwarn android.support.v7.widget.FitWindowsFrameLayout --keep class android.support.design.** { *; } --keep class android.support.multidex.MultiDexApplication { *; } diff --git a/Xamarin.Forms.Sandbox.UWP/App.xaml b/Xamarin.Forms.Sandbox.UWP/App.xaml deleted file mode 100644 index f76b7a4..0000000 --- a/Xamarin.Forms.Sandbox.UWP/App.xaml +++ /dev/null @@ -1,8 +0,0 @@ - - - diff --git a/Xamarin.Forms.Sandbox.UWP/App.xaml.cs b/Xamarin.Forms.Sandbox.UWP/App.xaml.cs deleted file mode 100644 index 7daa952..0000000 --- a/Xamarin.Forms.Sandbox.UWP/App.xaml.cs +++ /dev/null @@ -1,64 +0,0 @@ -using System; -using Windows.ApplicationModel; -using Windows.ApplicationModel.Activation; -using Windows.UI.Xaml; -using Windows.UI.Xaml.Navigation; - -namespace Xamarin.Forms.Sandbox.UWP -{ - sealed partial class App : global::Windows.UI.Xaml.Application - { - public App() - { - InitializeComponent(); - Suspending += OnSuspending; - } - - protected override void OnLaunched(LaunchActivatedEventArgs e) - { - var rootFrame = Window.Current.Content as Windows.UI.Xaml.Controls.Frame; - - // Do not repeat app initialization when the Window already has content, - // just ensure that the window is active - if (rootFrame == null) - { - // Create a Frame to act as the navigation context and navigate to the first page - rootFrame = new Windows.UI.Xaml.Controls.Frame(); - - rootFrame.NavigationFailed += OnNavigationFailed; - - Xamarin.Forms.Forms.Init(e); - - if (e.PreviousExecutionState == ApplicationExecutionState.Terminated) - { - //TODO: Load state from previously suspended application - } - - // Place the frame in the current Window - Window.Current.Content = rootFrame; - } - - if (rootFrame.Content == null) - { - // When the navigation stack isn't restored navigate to the first page, - // configuring the new page by passing required information as a navigation - // parameter - rootFrame.Navigate(typeof(MainPage), e.Arguments); - } - // Ensure the current window is active - Window.Current.Activate(); - } - - void OnNavigationFailed(object sender, NavigationFailedEventArgs e) - { - throw new Exception("Failed to load Page " + e.SourcePageType.FullName); - } - - private void OnSuspending(object sender, SuspendingEventArgs e) - { - var deferral = e.SuspendingOperation.GetDeferral(); - //TODO: Save application state and stop any background activity - deferral.Complete(); - } - } -} diff --git a/Xamarin.Forms.Sandbox.UWP/Assets/LargeTile.scale-100.png b/Xamarin.Forms.Sandbox.UWP/Assets/LargeTile.scale-100.png deleted file mode 100644 index c3e93b0..0000000 Binary files a/Xamarin.Forms.Sandbox.UWP/Assets/LargeTile.scale-100.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.UWP/Assets/LargeTile.scale-200.png b/Xamarin.Forms.Sandbox.UWP/Assets/LargeTile.scale-200.png deleted file mode 100644 index 2709372..0000000 Binary files a/Xamarin.Forms.Sandbox.UWP/Assets/LargeTile.scale-200.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.UWP/Assets/LargeTile.scale-400.png b/Xamarin.Forms.Sandbox.UWP/Assets/LargeTile.scale-400.png deleted file mode 100644 index ff03199..0000000 Binary files a/Xamarin.Forms.Sandbox.UWP/Assets/LargeTile.scale-400.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.UWP/Assets/SmallTile.scale-100.png b/Xamarin.Forms.Sandbox.UWP/Assets/SmallTile.scale-100.png deleted file mode 100644 index 4110853..0000000 Binary files a/Xamarin.Forms.Sandbox.UWP/Assets/SmallTile.scale-100.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.UWP/Assets/SmallTile.scale-200.png b/Xamarin.Forms.Sandbox.UWP/Assets/SmallTile.scale-200.png deleted file mode 100644 index c635095..0000000 Binary files a/Xamarin.Forms.Sandbox.UWP/Assets/SmallTile.scale-200.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.UWP/Assets/SmallTile.scale-400.png b/Xamarin.Forms.Sandbox.UWP/Assets/SmallTile.scale-400.png deleted file mode 100644 index e28c052..0000000 Binary files a/Xamarin.Forms.Sandbox.UWP/Assets/SmallTile.scale-400.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.UWP/Assets/SplashScreen.scale-100.png b/Xamarin.Forms.Sandbox.UWP/Assets/SplashScreen.scale-100.png deleted file mode 100644 index eacdf20..0000000 Binary files a/Xamarin.Forms.Sandbox.UWP/Assets/SplashScreen.scale-100.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.UWP/Assets/SplashScreen.scale-200.png b/Xamarin.Forms.Sandbox.UWP/Assets/SplashScreen.scale-200.png deleted file mode 100644 index caa5fc9..0000000 Binary files a/Xamarin.Forms.Sandbox.UWP/Assets/SplashScreen.scale-200.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.UWP/Assets/SplashScreen.scale-400.png b/Xamarin.Forms.Sandbox.UWP/Assets/SplashScreen.scale-400.png deleted file mode 100644 index 16d9784..0000000 Binary files a/Xamarin.Forms.Sandbox.UWP/Assets/SplashScreen.scale-400.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.UWP/Assets/Square150x150Logo.scale-100.png b/Xamarin.Forms.Sandbox.UWP/Assets/Square150x150Logo.scale-100.png deleted file mode 100644 index c1709f2..0000000 Binary files a/Xamarin.Forms.Sandbox.UWP/Assets/Square150x150Logo.scale-100.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.UWP/Assets/Square150x150Logo.scale-200.png b/Xamarin.Forms.Sandbox.UWP/Assets/Square150x150Logo.scale-200.png deleted file mode 100644 index 48732ff..0000000 Binary files a/Xamarin.Forms.Sandbox.UWP/Assets/Square150x150Logo.scale-200.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.UWP/Assets/Square150x150Logo.scale-400.png b/Xamarin.Forms.Sandbox.UWP/Assets/Square150x150Logo.scale-400.png deleted file mode 100644 index 95456be..0000000 Binary files a/Xamarin.Forms.Sandbox.UWP/Assets/Square150x150Logo.scale-400.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-16.png b/Xamarin.Forms.Sandbox.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-16.png deleted file mode 100644 index 0c6fd15..0000000 Binary files a/Xamarin.Forms.Sandbox.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-16.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-256.png b/Xamarin.Forms.Sandbox.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-256.png deleted file mode 100644 index 6635c80..0000000 Binary files a/Xamarin.Forms.Sandbox.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-256.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-48.png b/Xamarin.Forms.Sandbox.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-48.png deleted file mode 100644 index ee58ea6..0000000 Binary files a/Xamarin.Forms.Sandbox.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-48.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.UWP/Assets/Square44x44Logo.scale-100.png b/Xamarin.Forms.Sandbox.UWP/Assets/Square44x44Logo.scale-100.png deleted file mode 100644 index 06fc87c..0000000 Binary files a/Xamarin.Forms.Sandbox.UWP/Assets/Square44x44Logo.scale-100.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.UWP/Assets/Square44x44Logo.scale-200.png b/Xamarin.Forms.Sandbox.UWP/Assets/Square44x44Logo.scale-200.png deleted file mode 100644 index eaf2757..0000000 Binary files a/Xamarin.Forms.Sandbox.UWP/Assets/Square44x44Logo.scale-200.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.UWP/Assets/Square44x44Logo.scale-400.png b/Xamarin.Forms.Sandbox.UWP/Assets/Square44x44Logo.scale-400.png deleted file mode 100644 index 8a4ee54..0000000 Binary files a/Xamarin.Forms.Sandbox.UWP/Assets/Square44x44Logo.scale-400.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.UWP/Assets/Square44x44Logo.targetsize-16.png b/Xamarin.Forms.Sandbox.UWP/Assets/Square44x44Logo.targetsize-16.png deleted file mode 100644 index 0c6fd15..0000000 Binary files a/Xamarin.Forms.Sandbox.UWP/Assets/Square44x44Logo.targetsize-16.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.UWP/Assets/Square44x44Logo.targetsize-256.png b/Xamarin.Forms.Sandbox.UWP/Assets/Square44x44Logo.targetsize-256.png deleted file mode 100644 index 6635c80..0000000 Binary files a/Xamarin.Forms.Sandbox.UWP/Assets/Square44x44Logo.targetsize-256.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.UWP/Assets/Square44x44Logo.targetsize-48.png b/Xamarin.Forms.Sandbox.UWP/Assets/Square44x44Logo.targetsize-48.png deleted file mode 100644 index ee58ea6..0000000 Binary files a/Xamarin.Forms.Sandbox.UWP/Assets/Square44x44Logo.targetsize-48.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.UWP/Assets/StoreLogo.backup.png b/Xamarin.Forms.Sandbox.UWP/Assets/StoreLogo.backup.png deleted file mode 100644 index a197aaf..0000000 Binary files a/Xamarin.Forms.Sandbox.UWP/Assets/StoreLogo.backup.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.UWP/Assets/StoreLogo.scale-100.png b/Xamarin.Forms.Sandbox.UWP/Assets/StoreLogo.scale-100.png deleted file mode 100644 index 4fbbc70..0000000 Binary files a/Xamarin.Forms.Sandbox.UWP/Assets/StoreLogo.scale-100.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.UWP/Assets/StoreLogo.scale-200.png b/Xamarin.Forms.Sandbox.UWP/Assets/StoreLogo.scale-200.png deleted file mode 100644 index 29db501..0000000 Binary files a/Xamarin.Forms.Sandbox.UWP/Assets/StoreLogo.scale-200.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.UWP/Assets/StoreLogo.scale-400.png b/Xamarin.Forms.Sandbox.UWP/Assets/StoreLogo.scale-400.png deleted file mode 100644 index 383ad6e..0000000 Binary files a/Xamarin.Forms.Sandbox.UWP/Assets/StoreLogo.scale-400.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.UWP/Assets/Wide310x150Logo.scale-100.png b/Xamarin.Forms.Sandbox.UWP/Assets/Wide310x150Logo.scale-100.png deleted file mode 100644 index 476954a..0000000 Binary files a/Xamarin.Forms.Sandbox.UWP/Assets/Wide310x150Logo.scale-100.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.UWP/Assets/Wide310x150Logo.scale-200.png b/Xamarin.Forms.Sandbox.UWP/Assets/Wide310x150Logo.scale-200.png deleted file mode 100644 index eacdf20..0000000 Binary files a/Xamarin.Forms.Sandbox.UWP/Assets/Wide310x150Logo.scale-200.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.UWP/Assets/Wide310x150Logo.scale-400.png b/Xamarin.Forms.Sandbox.UWP/Assets/Wide310x150Logo.scale-400.png deleted file mode 100644 index caa5fc9..0000000 Binary files a/Xamarin.Forms.Sandbox.UWP/Assets/Wide310x150Logo.scale-400.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.UWP/MainPage.xaml b/Xamarin.Forms.Sandbox.UWP/MainPage.xaml deleted file mode 100644 index b449090..0000000 --- a/Xamarin.Forms.Sandbox.UWP/MainPage.xaml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/Xamarin.Forms.Sandbox.UWP/MainPage.xaml.cs b/Xamarin.Forms.Sandbox.UWP/MainPage.xaml.cs deleted file mode 100644 index 942c18e..0000000 --- a/Xamarin.Forms.Sandbox.UWP/MainPage.xaml.cs +++ /dev/null @@ -1,12 +0,0 @@ -namespace Xamarin.Forms.Sandbox.UWP -{ - public sealed partial class MainPage - { - public MainPage() - { - InitializeComponent(); - - LoadApplication(new Sandbox.App()); - } - } -} diff --git a/Xamarin.Forms.Sandbox.UWP/Package.appxmanifest b/Xamarin.Forms.Sandbox.UWP/Package.appxmanifest deleted file mode 100644 index d8c3037..0000000 --- a/Xamarin.Forms.Sandbox.UWP/Package.appxmanifest +++ /dev/null @@ -1,55 +0,0 @@ - - - - - - - - - - Xamarin.Forms.Sandbox.UWP - 404cc265-fa8b-45ed-8ba0-717829fd285e - Assets\StoreLogo.png - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Xamarin.Forms.Sandbox.UWP/Properties/Default.rd.xml b/Xamarin.Forms.Sandbox.UWP/Properties/Default.rd.xml deleted file mode 100644 index 80a960c..0000000 --- a/Xamarin.Forms.Sandbox.UWP/Properties/Default.rd.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/Xamarin.Forms.Sandbox.UWP/Xamarin.Forms.Sandbox.UWP.csproj b/Xamarin.Forms.Sandbox.UWP/Xamarin.Forms.Sandbox.UWP.csproj deleted file mode 100644 index 89a073e..0000000 --- a/Xamarin.Forms.Sandbox.UWP/Xamarin.Forms.Sandbox.UWP.csproj +++ /dev/null @@ -1,173 +0,0 @@ - - - - - Debug - x86 - {868A9B7B-3977-4B56-91F7-F6B75657198B} - AppContainerExe - Properties - Xamarin.Forms.Sandbox.UWP - Xamarin.Forms.Sandbox.UWP - en-US - UAP - 10.0.16299.0 - 10.0.16299.0 - 14 - true - 512 - {A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - Xamarin.Forms.ContributorGallery.UWP_TemporaryKey.pfx - - - true - bin\ARM\Debug\ - DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP - ;2008 - full - ARM - false - prompt - true - - - bin\ARM\Release\ - TRACE;NETFX_CORE;WINDOWS_UWP - true - ;2008 - pdbonly - ARM - false - prompt - true - true - - - true - bin\x64\Debug\ - DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP - ;2008 - full - x64 - false - prompt - true - - - bin\x64\Release\ - TRACE;NETFX_CORE;WINDOWS_UWP - true - ;2008 - pdbonly - x64 - false - prompt - true - true - - - true - bin\x86\Debug\ - DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP - ;2008 - full - x86 - false - prompt - true - - - bin\x86\Release\ - TRACE;NETFX_CORE;WINDOWS_UWP - true - ;2008 - pdbonly - x86 - false - prompt - true - true - - - - App.xaml - - - MainPage.xaml - - - - - Designer - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - MSBuild:Compile - Designer - - - MSBuild:Compile - Designer - - - - - - - - {57b8b73d-c3b5-4c42-869e-7b2f17d354ac} - Xamarin.Forms.Core - - - {04d89a60-78ef-4a32-ae17-87e47e0233a5} - Xamarin.Forms.Maps.UWP - - - {7d13bac2-c6a4-416a-b07e-c169b199e52b} - Xamarin.Forms.Maps - - - {00d8d049-ffaa-4759-8fc9-1eca30777f72} - Xamarin.Forms.Platform.UAP - - - {e155c410-e5de-464d-9ed7-2b1e672438ed} - Xamarin.Forms.Sandbox - - - - 14.0 - - - \ No newline at end of file diff --git a/Xamarin.Forms.Sandbox.WPF/App.config b/Xamarin.Forms.Sandbox.WPF/App.config deleted file mode 100644 index bae5d6d..0000000 --- a/Xamarin.Forms.Sandbox.WPF/App.config +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/Xamarin.Forms.Sandbox.WPF/App.xaml b/Xamarin.Forms.Sandbox.WPF/App.xaml deleted file mode 100644 index 010dd6f..0000000 --- a/Xamarin.Forms.Sandbox.WPF/App.xaml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - diff --git a/Xamarin.Forms.Sandbox.WPF/App.xaml.cs b/Xamarin.Forms.Sandbox.WPF/App.xaml.cs deleted file mode 100644 index f5b8a15..0000000 --- a/Xamarin.Forms.Sandbox.WPF/App.xaml.cs +++ /dev/null @@ -1,17 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Configuration; -using System.Data; -using System.Linq; -using System.Threading.Tasks; -using System.Windows; - -namespace Xamarin.Forms.Sandbox.WPF -{ - /// - /// Interaction logic for App.xaml - /// - public partial class App : System.Windows.Application - { - } -} diff --git a/Xamarin.Forms.Sandbox.WPF/MainWindow.xaml b/Xamarin.Forms.Sandbox.WPF/MainWindow.xaml deleted file mode 100644 index ea5b965..0000000 --- a/Xamarin.Forms.Sandbox.WPF/MainWindow.xaml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - diff --git a/Xamarin.Forms.Sandbox.WPF/MainWindow.xaml.cs b/Xamarin.Forms.Sandbox.WPF/MainWindow.xaml.cs deleted file mode 100644 index 45423f4..0000000 --- a/Xamarin.Forms.Sandbox.WPF/MainWindow.xaml.cs +++ /dev/null @@ -1,19 +0,0 @@ - -using Xamarin.Forms.Platform.WPF; - -namespace Xamarin.Forms.Sandbox.WPF -{ - /// - /// Interaction logic for MainWindow.xaml - /// - public partial class MainWindow : Xamarin.Forms.Platform.WPF.FormsApplicationPage - { - public MainWindow() - { - InitializeComponent(); - Xamarin.Forms.Forms.Init(); - FormsMaps.Init(""); - LoadApplication(new Sandbox.App()); - } - } -} diff --git a/Xamarin.Forms.Sandbox.WPF/Properties/Resources.Designer.cs b/Xamarin.Forms.Sandbox.WPF/Properties/Resources.Designer.cs deleted file mode 100644 index 2b15ba0..0000000 --- a/Xamarin.Forms.Sandbox.WPF/Properties/Resources.Designer.cs +++ /dev/null @@ -1,63 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -namespace Xamarin.Forms.Sandbox.WPF.Properties { - using System; - - - /// - /// A strongly-typed resource class, for looking up localized strings, etc. - /// - // This class was auto-generated by the StronglyTypedResourceBuilder - // class via a tool like ResGen or Visual Studio. - // To add or remove a member, edit your .ResX file then rerun ResGen - // with the /str option, or rebuild your VS project. - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - internal class Resources { - - private static global::System.Resources.ResourceManager resourceMan; - - private static global::System.Globalization.CultureInfo resourceCulture; - - [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] - internal Resources() { - } - - /// - /// Returns the cached ResourceManager instance used by this class. - /// - [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Resources.ResourceManager ResourceManager { - get { - if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Xamarin.Forms.Sandbox.WPF.Properties.Resources", typeof(Resources).Assembly); - resourceMan = temp; - } - return resourceMan; - } - } - - /// - /// Overrides the current thread's CurrentUICulture property for all - /// resource lookups using this strongly typed resource class. - /// - [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Globalization.CultureInfo Culture { - get { - return resourceCulture; - } - set { - resourceCulture = value; - } - } - } -} diff --git a/Xamarin.Forms.Sandbox.WPF/Properties/Resources.resx b/Xamarin.Forms.Sandbox.WPF/Properties/Resources.resx deleted file mode 100644 index af7dbeb..0000000 --- a/Xamarin.Forms.Sandbox.WPF/Properties/Resources.resx +++ /dev/null @@ -1,117 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - \ No newline at end of file diff --git a/Xamarin.Forms.Sandbox.WPF/Properties/Settings.Designer.cs b/Xamarin.Forms.Sandbox.WPF/Properties/Settings.Designer.cs deleted file mode 100644 index 494250e..0000000 --- a/Xamarin.Forms.Sandbox.WPF/Properties/Settings.Designer.cs +++ /dev/null @@ -1,26 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -namespace Xamarin.Forms.Sandbox.WPF.Properties { - - - [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.0.0.0")] - internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { - - private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); - - public static Settings Default { - get { - return defaultInstance; - } - } - } -} diff --git a/Xamarin.Forms.Sandbox.WPF/Properties/Settings.settings b/Xamarin.Forms.Sandbox.WPF/Properties/Settings.settings deleted file mode 100644 index 033d7a5..0000000 --- a/Xamarin.Forms.Sandbox.WPF/Properties/Settings.settings +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/Xamarin.Forms.Sandbox.WPF/Xamarin.Forms.Sandbox.WPF.csproj b/Xamarin.Forms.Sandbox.WPF/Xamarin.Forms.Sandbox.WPF.csproj deleted file mode 100644 index 89173dd..0000000 --- a/Xamarin.Forms.Sandbox.WPF/Xamarin.Forms.Sandbox.WPF.csproj +++ /dev/null @@ -1,128 +0,0 @@ - - - - - Debug - AnyCPU - {8C5D9AAB-B9D6-40CD-BAD4-15E4039149E5} - WinExe - Xamarin.Forms.Sandbox.WPF - Xamarin.Forms.Sandbox.WPF - v4.6.1 - 512 - {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - 4 - true - true - - - - AnyCPU - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - AnyCPU - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - - - - - - - - - - - - 4.0 - - - - - - - - - - - - - - MSBuild:Compile - Designer - - - MSBuild:Compile - Designer - - - App.xaml - Code - - - MainWindow.xaml - Code - - - - - True - True - Resources.resx - - - True - Settings.settings - True - - - ResXFileCodeGenerator - Resources.Designer.cs - - - SettingsSingleFileGenerator - Settings.Designer.cs - - - - - - - - {57b8b73d-c3b5-4c42-869e-7b2f17d354ac} - Xamarin.Forms.Core - - - {89b0db73-a32e-447c-9390-a2a59d89b2e4} - Xamarin.Forms.Maps.WPF - - - {140bc260-8b15-4d3a-b1b0-ddd8072918cc} - Xamarin.Forms.Platform.WPF - - - {7d13bac2-c6a4-416a-b07e-c169b199e52b} - Xamarin.Forms.Maps - - - {e155c410-e5de-464d-9ed7-2b1e672438ed} - Xamarin.Forms.Sandbox - - - {9db2f292-8034-4e06-89ad-98bbda4306b9} - Xamarin.Forms.Xaml - - - - \ No newline at end of file diff --git a/Xamarin.Forms.Sandbox.iOS/AppDelegate.cs b/Xamarin.Forms.Sandbox.iOS/AppDelegate.cs deleted file mode 100644 index 2ea8153..0000000 --- a/Xamarin.Forms.Sandbox.iOS/AppDelegate.cs +++ /dev/null @@ -1,32 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; - -using Foundation; -using UIKit; - -namespace Xamarin.Forms.Sandbox.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(); - FormsMaterial.Init(); - LoadApplication(new App()); - - return base.FinishedLaunching(app, options); - } - } -} diff --git a/Xamarin.Forms.Sandbox.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json b/Xamarin.Forms.Sandbox.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json deleted file mode 100644 index 98f4d03..0000000 --- a/Xamarin.Forms.Sandbox.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json +++ /dev/null @@ -1,117 +0,0 @@ -{ - "images": [ - { - "scale": "2x", - "size": "20x20", - "idiom": "iphone", - "filename": "Icon40.png" - }, - { - "scale": "3x", - "size": "20x20", - "idiom": "iphone", - "filename": "Icon60.png" - }, - { - "scale": "2x", - "size": "29x29", - "idiom": "iphone", - "filename": "Icon58.png" - }, - { - "scale": "3x", - "size": "29x29", - "idiom": "iphone", - "filename": "Icon87.png" - }, - { - "scale": "2x", - "size": "40x40", - "idiom": "iphone", - "filename": "Icon80.png" - }, - { - "scale": "3x", - "size": "40x40", - "idiom": "iphone", - "filename": "Icon120.png" - }, - { - "scale": "2x", - "size": "60x60", - "idiom": "iphone", - "filename": "Icon120.png" - }, - { - "scale": "3x", - "size": "60x60", - "idiom": "iphone", - "filename": "Icon180.png" - }, - { - "scale": "1x", - "size": "20x20", - "idiom": "ipad", - "filename": "Icon20.png" - }, - { - "scale": "2x", - "size": "20x20", - "idiom": "ipad", - "filename": "Icon40.png" - }, - { - "scale": "1x", - "size": "29x29", - "idiom": "ipad", - "filename": "Icon29.png" - }, - { - "scale": "2x", - "size": "29x29", - "idiom": "ipad", - "filename": "Icon58.png" - }, - { - "scale": "1x", - "size": "40x40", - "idiom": "ipad", - "filename": "Icon40.png" - }, - { - "scale": "2x", - "size": "40x40", - "idiom": "ipad", - "filename": "Icon80.png" - }, - { - "scale": "1x", - "size": "76x76", - "idiom": "ipad", - "filename": "Icon76.png" - }, - { - "scale": "2x", - "size": "76x76", - "idiom": "ipad", - "filename": "Icon152.png" - }, - { - "scale": "2x", - "size": "83.5x83.5", - "idiom": "ipad", - "filename": "Icon167.png" - }, - { - "scale": "1x", - "size": "1024x1024", - "idiom": "ios-marketing", - "filename": "Icon1024.png" - } - ], - "properties": {}, - "info": { - "version": 1, - "author": "xcode" - } -} \ No newline at end of file diff --git a/Xamarin.Forms.Sandbox.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png b/Xamarin.Forms.Sandbox.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png deleted file mode 100644 index 9174c98..0000000 Binary files a/Xamarin.Forms.Sandbox.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png b/Xamarin.Forms.Sandbox.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png deleted file mode 100644 index 9c60a17..0000000 Binary files a/Xamarin.Forms.Sandbox.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png b/Xamarin.Forms.Sandbox.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png deleted file mode 100644 index 448d6ef..0000000 Binary files a/Xamarin.Forms.Sandbox.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png b/Xamarin.Forms.Sandbox.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png deleted file mode 100644 index 8524768..0000000 Binary files a/Xamarin.Forms.Sandbox.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png b/Xamarin.Forms.Sandbox.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png deleted file mode 100644 index 60a6470..0000000 Binary files a/Xamarin.Forms.Sandbox.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png b/Xamarin.Forms.Sandbox.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png deleted file mode 100644 index 45268a6..0000000 Binary files a/Xamarin.Forms.Sandbox.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png b/Xamarin.Forms.Sandbox.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png deleted file mode 100644 index 6a6c77a..0000000 Binary files a/Xamarin.Forms.Sandbox.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png b/Xamarin.Forms.Sandbox.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png deleted file mode 100644 index cc7edcf..0000000 Binary files a/Xamarin.Forms.Sandbox.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png b/Xamarin.Forms.Sandbox.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png deleted file mode 100644 index 1ad04f0..0000000 Binary files a/Xamarin.Forms.Sandbox.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png b/Xamarin.Forms.Sandbox.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png deleted file mode 100644 index 2dd5262..0000000 Binary files a/Xamarin.Forms.Sandbox.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png b/Xamarin.Forms.Sandbox.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png deleted file mode 100644 index b058cae..0000000 Binary files a/Xamarin.Forms.Sandbox.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png b/Xamarin.Forms.Sandbox.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png deleted file mode 100644 index 02e47a2..0000000 Binary files a/Xamarin.Forms.Sandbox.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png b/Xamarin.Forms.Sandbox.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png deleted file mode 100644 index 4954a4b..0000000 Binary files a/Xamarin.Forms.Sandbox.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.iOS/Entitlements.plist b/Xamarin.Forms.Sandbox.iOS/Entitlements.plist deleted file mode 100644 index e9a3005..0000000 --- a/Xamarin.Forms.Sandbox.iOS/Entitlements.plist +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/Xamarin.Forms.Sandbox.iOS/Info.plist b/Xamarin.Forms.Sandbox.iOS/Info.plist deleted file mode 100644 index 9a03d64..0000000 --- a/Xamarin.Forms.Sandbox.iOS/Info.plist +++ /dev/null @@ -1,38 +0,0 @@ - - - - - UIDeviceFamily - - 1 - 2 - - UISupportedInterfaceOrientations - - UIInterfaceOrientationPortrait - UIInterfaceOrientationLandscapeLeft - UIInterfaceOrientationLandscapeRight - - UISupportedInterfaceOrientations~ipad - - UIInterfaceOrientationPortrait - UIInterfaceOrientationPortraitUpsideDown - UIInterfaceOrientationLandscapeLeft - UIInterfaceOrientationLandscapeRight - - MinimumOSVersion - 8.0 - CFBundleDisplayName - Forms Sandbox - CFBundleIdentifier - com.companyname.Xamarin.Forms.Sandbox - CFBundleVersion - 1.0 - UILaunchStoryboardName - LaunchScreen - CFBundleName - Xamarin.Forms.Sandbox - XSAppIconAssets - Assets.xcassets/AppIcon.appiconset - - diff --git a/Xamarin.Forms.Sandbox.iOS/Main.cs b/Xamarin.Forms.Sandbox.iOS/Main.cs deleted file mode 100644 index c477379..0000000 --- a/Xamarin.Forms.Sandbox.iOS/Main.cs +++ /dev/null @@ -1,20 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; - -using Foundation; -using UIKit; - -namespace Xamarin.Forms.Sandbox.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"); - } - } -} diff --git a/Xamarin.Forms.Sandbox.iOS/Resources/Default-568h@2x.png b/Xamarin.Forms.Sandbox.iOS/Resources/Default-568h@2x.png deleted file mode 100644 index 26c6461..0000000 Binary files a/Xamarin.Forms.Sandbox.iOS/Resources/Default-568h@2x.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.iOS/Resources/Default-Portrait.png b/Xamarin.Forms.Sandbox.iOS/Resources/Default-Portrait.png deleted file mode 100644 index 5d0d1ab..0000000 Binary files a/Xamarin.Forms.Sandbox.iOS/Resources/Default-Portrait.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.iOS/Resources/Default-Portrait@2x.png b/Xamarin.Forms.Sandbox.iOS/Resources/Default-Portrait@2x.png deleted file mode 100644 index 0ee2688..0000000 Binary files a/Xamarin.Forms.Sandbox.iOS/Resources/Default-Portrait@2x.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.iOS/Resources/Default.png b/Xamarin.Forms.Sandbox.iOS/Resources/Default.png deleted file mode 100644 index b74643c..0000000 Binary files a/Xamarin.Forms.Sandbox.iOS/Resources/Default.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.iOS/Resources/Default@2x.png b/Xamarin.Forms.Sandbox.iOS/Resources/Default@2x.png deleted file mode 100644 index dbd6bd3..0000000 Binary files a/Xamarin.Forms.Sandbox.iOS/Resources/Default@2x.png and /dev/null differ diff --git a/Xamarin.Forms.Sandbox.iOS/Resources/LaunchScreen.storyboard b/Xamarin.Forms.Sandbox.iOS/Resources/LaunchScreen.storyboard deleted file mode 100644 index a639c2f..0000000 --- a/Xamarin.Forms.Sandbox.iOS/Resources/LaunchScreen.storyboard +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Xamarin.Forms.Sandbox.iOS/Xamarin.Forms.Sandbox.iOS.csproj b/Xamarin.Forms.Sandbox.iOS/Xamarin.Forms.Sandbox.iOS.csproj deleted file mode 100644 index 2915f6b..0000000 --- a/Xamarin.Forms.Sandbox.iOS/Xamarin.Forms.Sandbox.iOS.csproj +++ /dev/null @@ -1,197 +0,0 @@ - - - - Debug - iPhoneSimulator - 8.0.30703 - 2.0 - {160053B8-745A-41DB-9B33-30479729D6DC} - {FEACFBD2-3405-455C-9665-78FE426C6842};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - {6143fdea-f3c2-4a09-aafa-6e230626515e} - Exe - Xamarin.Forms.Sandbox.iOS - Resources - Xamarin.Forms.Sandbox.iOS - NSUrlSessionHandler - - - - - true - full - false - bin\iPhoneSimulator\Debug - DEBUG - prompt - 4 - false - x86_64 - None - true - - - none - true - bin\iPhoneSimulator\Release - prompt - 4 - None - x86_64 - false - - - true - full - false - bin\iPhone\Debug - DEBUG - prompt - 4 - false - ARM64 - iPhone Developer - true - Entitlements.plist - - - none - true - bin\iPhone\Release - prompt - 4 - ARM64 - false - iPhone Developer - Entitlements.plist - - - none - True - bin\iPhone\Ad-Hoc - prompt - 4 - False - ARM64 - True - Automatic:AdHoc - iPhone Distribution - Entitlements.plist - - - none - True - bin\iPhone\AppStore - prompt - 4 - False - ARM64 - Automatic:AppStore - iPhone Distribution - Entitlements.plist - - - - - - - - - - - false - - - false - - - false - - - false - - - false - - - false - - - false - - - false - - - false - - - false - - - false - - - false - - - false - - - false - - - - - - - - - - - {aba078c4-f9bb-4924-8b2b-10fe0d2f5491} - Xamarin.Forms.Maps.iOS - false - false - - - {7d13bac2-c6a4-416a-b07e-c169b199e52b} - Xamarin.Forms.Maps - - - {57B8B73D-C3B5-4C42-869E-7B2F17D354AC} - Xamarin.Forms.Core - - - {271193c1-6e7c-429c-a36d-3f1be5267231} - Xamarin.Forms.Platform.iOS - false - false - - - {39b3457f-01d8-43d0-8e84-d8c4f73cf48d} - Xamarin.Forms.Platform.iOS (Forwarders) - false - false - - - {8A75B1DC-CEED-4B1B-8675-A7DFFD1E6DE4} - Xamarin.Forms.Material.iOS - false - false - - - {e155c410-e5de-464d-9ed7-2b1e672438ed} - Xamarin.Forms.Sandbox - - - {9db2f292-8034-4e06-89ad-98bbda4306b9} - Xamarin.Forms.Xaml - - - - - 72.2.0.1 - - - - \ No newline at end of file diff --git a/Xamarin.Forms.Sandbox/App.StartHere.cs b/Xamarin.Forms.Sandbox/App.StartHere.cs deleted file mode 100644 index a6ff517..0000000 --- a/Xamarin.Forms.Sandbox/App.StartHere.cs +++ /dev/null @@ -1,16 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Reflection; -using System.Text; -using Xamarin.Forms.StyleSheets; - -namespace Xamarin.Forms.Sandbox -{ - public partial class App - { - void InitializeMainPage() - { - MainPage = new ShellPage(); - } - } -} diff --git a/Xamarin.Forms.Sandbox/App.cs b/Xamarin.Forms.Sandbox/App.cs deleted file mode 100644 index 3df0bde..0000000 --- a/Xamarin.Forms.Sandbox/App.cs +++ /dev/null @@ -1,76 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using Xamarin.Forms; -using Xamarin.Forms.Xaml; -using Xamarin.Forms.PlatformConfiguration.iOSSpecific; -using Xamarin.Forms.PlatformConfiguration; -using Xamarin.Forms.StyleSheets; -using System.Reflection; - -[assembly: XamlCompilation(XamlCompilationOptions.Compile)] -namespace Xamarin.Forms.Sandbox -{ - public partial class App : Application - { - public App() - { - Device.SetFlags(new[] { "Shell_Experimental", "CollectionView_Experimental" }); - InitializeMainPage(); - } - - void AddStyleSheet() - { - this.Resources.Add(StyleSheet.FromResource( - "Styles.css", - IntrospectionExtensions.GetTypeInfo(typeof(App)).Assembly)); - } - - void InitializeLegacyRenderers() - { - var flags = new List(Device.Flags); - flags.Add("UseLegacyRenderers"); - Device.SetFlags(flags.Select(x => x).Distinct().ToArray()); - } - - - ContentPage CreateContentPage(View view) - { - var returnValue = new ContentPage() { Content = view }; - - returnValue.On().SetUseSafeArea(true); - return returnValue; - } - - - ContentPage CreateListViewPage(Func template) - { - var listView = new ListView(ListViewCachingStrategy.RecycleElement); - listView.RowHeight = 500; - listView.ItemsSource = Enumerable.Range(0, 1).ToList(); - listView.ItemTemplate = new DataTemplate(() => - { - ViewCell cell = new ViewCell(); - cell.View = template(); - return cell; - }); - - return CreateContentPage(listView); - } - - - StackLayout CreateStackLayout(IEnumerable children, StackOrientation orientation = StackOrientation.Vertical ) - { - var sl = new StackLayout() { Orientation = orientation }; - foreach (var child in children) - sl.Children.Add(child); - - return sl; - } - - ContentPage CreateStackLayoutPage(IEnumerable children) - { - return CreateContentPage(CreateStackLayout(children)); - } - } -} diff --git a/Xamarin.Forms.Sandbox/Directory.Build.props b/Xamarin.Forms.Sandbox/Directory.Build.props deleted file mode 100644 index ef99477..0000000 --- a/Xamarin.Forms.Sandbox/Directory.Build.props +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/Xamarin.Forms.Sandbox/Directory.Build.targets b/Xamarin.Forms.Sandbox/Directory.Build.targets deleted file mode 100644 index 804a384..0000000 --- a/Xamarin.Forms.Sandbox/Directory.Build.targets +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/Xamarin.Forms.Sandbox/MainPage.xaml b/Xamarin.Forms.Sandbox/MainPage.xaml deleted file mode 100644 index cd6639b..0000000 --- a/Xamarin.Forms.Sandbox/MainPage.xaml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - -