diff --git a/GUT.Schedule/GUT.Schedule.UWP/App.xaml b/GUT.Schedule/GUT.Schedule.UWP/App.xaml
new file mode 100644
index 0000000..c653146
--- /dev/null
+++ b/GUT.Schedule/GUT.Schedule.UWP/App.xaml
@@ -0,0 +1,7 @@
+
+
+
\ No newline at end of file
diff --git a/GUT.Schedule/GUT.Schedule.UWP/App.xaml.cs b/GUT.Schedule/GUT.Schedule.UWP/App.xaml.cs
new file mode 100644
index 0000000..c62a7f4
--- /dev/null
+++ b/GUT.Schedule/GUT.Schedule.UWP/App.xaml.cs
@@ -0,0 +1,90 @@
+using System;
+using Windows.ApplicationModel;
+using Windows.ApplicationModel.Activation;
+using Windows.UI.Xaml;
+using Windows.UI.Xaml.Controls;
+using Windows.UI.Xaml.Navigation;
+
+namespace GUTSchedule.UWP
+{
+ ///
+ /// Provides application-specific behavior to supplement the default Application class.
+ ///
+ sealed partial class App : Application
+ {
+ ///
+ /// Initializes the singleton application object. This is the first line of authored code
+ /// executed, and as such is the logical equivalent of main() or WinMain().
+ ///
+ public App()
+ {
+ InitializeComponent();
+ Suspending += OnSuspending;
+ }
+
+ ///
+ /// Invoked when the application is launched normally by the end user. Other entry points
+ /// will be used such as when the application is launched to open a specific file.
+ ///
+ /// Details about the launch request and process.
+ protected override void OnLaunched(LaunchActivatedEventArgs e)
+ {
+ Frame rootFrame = Window.Current.Content as 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 Frame();
+
+ rootFrame.NavigationFailed += OnNavigationFailed;
+
+ if (e.PreviousExecutionState == ApplicationExecutionState.Terminated)
+ {
+ //TODO: Load state from previously suspended application
+ }
+
+ // Place the frame in the current Window
+ Window.Current.Content = rootFrame;
+ }
+
+ if (e.PrelaunchActivated == false)
+ {
+ 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();
+ }
+ }
+
+ ///
+ /// Invoked when Navigation to a certain page fails
+ ///
+ /// The Frame which failed navigation
+ /// Details about the navigation failure
+ void OnNavigationFailed(object sender, NavigationFailedEventArgs e)
+ {
+ throw new Exception("Failed to load Page " + e.SourcePageType.FullName);
+ }
+
+ ///
+ /// Invoked when application execution is being suspended. Application state is saved
+ /// without knowing whether the application will be terminated or resumed with the contents
+ /// of memory still intact.
+ ///
+ /// The source of the suspend request.
+ /// Details about the suspend request.
+ 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/GUT.Schedule/GUT.Schedule.UWP/Assets/LockScreenLogo.scale-200.png b/GUT.Schedule/GUT.Schedule.UWP/Assets/LockScreenLogo.scale-200.png
new file mode 100644
index 0000000..735f57a
Binary files /dev/null and b/GUT.Schedule/GUT.Schedule.UWP/Assets/LockScreenLogo.scale-200.png differ
diff --git a/GUT.Schedule/GUT.Schedule.UWP/Assets/SplashScreen.scale-200.png b/GUT.Schedule/GUT.Schedule.UWP/Assets/SplashScreen.scale-200.png
new file mode 100644
index 0000000..023e7f1
Binary files /dev/null and b/GUT.Schedule/GUT.Schedule.UWP/Assets/SplashScreen.scale-200.png differ
diff --git a/GUT.Schedule/GUT.Schedule.UWP/Assets/Square150x150Logo.scale-200.png b/GUT.Schedule/GUT.Schedule.UWP/Assets/Square150x150Logo.scale-200.png
new file mode 100644
index 0000000..af49fec
Binary files /dev/null and b/GUT.Schedule/GUT.Schedule.UWP/Assets/Square150x150Logo.scale-200.png differ
diff --git a/GUT.Schedule/GUT.Schedule.UWP/Assets/Square44x44Logo.scale-200.png b/GUT.Schedule/GUT.Schedule.UWP/Assets/Square44x44Logo.scale-200.png
new file mode 100644
index 0000000..ce342a2
Binary files /dev/null and b/GUT.Schedule/GUT.Schedule.UWP/Assets/Square44x44Logo.scale-200.png differ
diff --git a/GUT.Schedule/GUT.Schedule.UWP/Assets/Square44x44Logo.targetsize-24_altform-unplated.png b/GUT.Schedule/GUT.Schedule.UWP/Assets/Square44x44Logo.targetsize-24_altform-unplated.png
new file mode 100644
index 0000000..f6c02ce
Binary files /dev/null and b/GUT.Schedule/GUT.Schedule.UWP/Assets/Square44x44Logo.targetsize-24_altform-unplated.png differ
diff --git a/GUT.Schedule/GUT.Schedule.UWP/Assets/StoreLogo.png b/GUT.Schedule/GUT.Schedule.UWP/Assets/StoreLogo.png
new file mode 100644
index 0000000..7385b56
Binary files /dev/null and b/GUT.Schedule/GUT.Schedule.UWP/Assets/StoreLogo.png differ
diff --git a/GUT.Schedule/GUT.Schedule.UWP/Assets/Wide310x150Logo.scale-200.png b/GUT.Schedule/GUT.Schedule.UWP/Assets/Wide310x150Logo.scale-200.png
new file mode 100644
index 0000000..288995b
Binary files /dev/null and b/GUT.Schedule/GUT.Schedule.UWP/Assets/Wide310x150Logo.scale-200.png differ
diff --git a/GUT.Schedule/GUT.Schedule.UWP/GUTSchedule.UWP.csproj b/GUT.Schedule/GUT.Schedule.UWP/GUTSchedule.UWP.csproj
new file mode 100644
index 0000000..d5ba151
--- /dev/null
+++ b/GUT.Schedule/GUT.Schedule.UWP/GUTSchedule.UWP.csproj
@@ -0,0 +1,174 @@
+
+
+
+
+ Debug
+ x86
+ {AC7E8D95-1E2A-409C-9A95-477C2AC8E47F}
+ AppContainerExe
+ Properties
+ GUTSchedule.UWP
+ GUTSchedule.UWP
+ en-US
+ UAP
+ 10.0.16299.0
+ 10.0.10240.0
+ 14
+ 512
+ {A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
+ true
+ false
+
+
+ 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
+
+
+ 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\ARM64\Debug\
+ DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP
+ ;2008
+ full
+ ARM64
+ false
+ prompt
+ true
+ true
+
+
+ bin\ARM64\Release\
+ TRACE;NETFX_CORE;WINDOWS_UWP
+ true
+ ;2008
+ pdbonly
+ ARM64
+ 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
+
+
+ PackageReference
+
+
+
+ App.xaml
+
+
+ MainPage.xaml
+
+
+
+
+
+ Designer
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ MSBuild:Compile
+ Designer
+
+
+ MSBuild:Compile
+ Designer
+
+
+
+
+ 6.2.9
+
+
+
+
+ {a6f6de35-0eb4-4d11-9ff9-f4601595b639}
+ GUTSchedule
+
+
+
+ 14.0
+
+
+
+
\ No newline at end of file
diff --git a/GUT.Schedule/GUT.Schedule.UWP/MainPage.xaml b/GUT.Schedule/GUT.Schedule.UWP/MainPage.xaml
new file mode 100644
index 0000000..0fa2eb6
--- /dev/null
+++ b/GUT.Schedule/GUT.Schedule.UWP/MainPage.xaml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/GUT.Schedule/GUT.Schedule.UWP/MainPage.xaml.cs b/GUT.Schedule/GUT.Schedule.UWP/MainPage.xaml.cs
new file mode 100644
index 0000000..4a18192
--- /dev/null
+++ b/GUT.Schedule/GUT.Schedule.UWP/MainPage.xaml.cs
@@ -0,0 +1,17 @@
+using Windows.UI.Xaml.Controls;
+
+// The Blank Page item template is documented at https://go.microsoft.com/fwlink/?LinkId=402352&clcid=0x409
+
+namespace GUTSchedule.UWP
+{
+ ///
+ /// An empty page that can be used on its own or navigated to within a Frame.
+ ///
+ public sealed partial class MainPage : Page
+ {
+ public MainPage()
+ {
+ InitializeComponent();
+ }
+ }
+}
\ No newline at end of file
diff --git a/GUT.Schedule/GUT.Schedule.UWP/Package.appxmanifest b/GUT.Schedule/GUT.Schedule.UWP/Package.appxmanifest
new file mode 100644
index 0000000..5be27c9
--- /dev/null
+++ b/GUT.Schedule/GUT.Schedule.UWP/Package.appxmanifest
@@ -0,0 +1,49 @@
+
+
+
+
+
+
+
+
+
+ GUT.Schedule.UWP
+ Michael Gordeev
+ Assets\StoreLogo.png
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/GUT.Schedule/GUT.Schedule.UWP/Properties/AssemblyInfo.cs b/GUT.Schedule/GUT.Schedule.UWP/Properties/AssemblyInfo.cs
new file mode 100644
index 0000000..059d856
--- /dev/null
+++ b/GUT.Schedule/GUT.Schedule.UWP/Properties/AssemblyInfo.cs
@@ -0,0 +1,29 @@
+using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+// General Information about an assembly is controlled through the following
+// set of attributes. Change these attribute values to modify the information
+// associated with an assembly.
+[assembly: AssemblyTitle("GUT.Schedule.UWP")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("GUT.Schedule.UWP")]
+[assembly: AssemblyCopyright("Copyright © 2020")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Version information for an assembly consists of the following four values:
+//
+// Major Version
+// Minor Version
+// Build Number
+// Revision
+//
+// You can specify all the values or you can default the Build and Revision Numbers
+// by using the '*' as shown below:
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]
+[assembly: ComVisible(false)]
\ No newline at end of file
diff --git a/GUT.Schedule/GUT.Schedule.UWP/Properties/Default.rd.xml b/GUT.Schedule/GUT.Schedule.UWP/Properties/Default.rd.xml
new file mode 100644
index 0000000..af00722
--- /dev/null
+++ b/GUT.Schedule/GUT.Schedule.UWP/Properties/Default.rd.xml
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/GUT.Schedule/GUT.Schedule.sln b/GUT.Schedule/GUT.Schedule.sln
index 89fccf2..0f3e3b8 100644
--- a/GUT.Schedule/GUT.Schedule.sln
+++ b/GUT.Schedule/GUT.Schedule.sln
@@ -3,24 +3,147 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.29609.76
MinimumVisualStudioVersion = 10.0.40219.1
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GUT.Schedule", "GUT.Schedule\GUT.Schedule.csproj", "{A0471165-37F5-4309-8A92-42F1A6589EEE}"
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GUTSchedule.Droid", "GUTSchedule.Droid\GUTSchedule.Droid.csproj", "{A0471165-37F5-4309-8A92-42F1A6589EEE}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GUTSchedule.UWP", "GUT.Schedule.UWP\GUTSchedule.UWP.csproj", "{AC7E8D95-1E2A-409C-9A95-477C2AC8E47F}"
+EndProject
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GUTSchedule", "GUTSchedule\GUTSchedule.csproj", "{A6F6DE35-0EB4-4D11-9FF9-F4601595B639}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
+ Debug|ARM = Debug|ARM
+ Debug|ARM64 = Debug|ARM64
+ Debug|x64 = Debug|x64
+ Debug|x86 = Debug|x86
Release (APK)|Any CPU = Release (APK)|Any CPU
+ Release (APK)|ARM = Release (APK)|ARM
+ Release (APK)|ARM64 = Release (APK)|ARM64
+ Release (APK)|x64 = Release (APK)|x64
+ Release (APK)|x86 = Release (APK)|x86
Release|Any CPU = Release|Any CPU
+ Release|ARM = Release|ARM
+ Release|ARM64 = Release|ARM64
+ Release|x64 = Release|x64
+ Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{A0471165-37F5-4309-8A92-42F1A6589EEE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A0471165-37F5-4309-8A92-42F1A6589EEE}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A0471165-37F5-4309-8A92-42F1A6589EEE}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
+ {A0471165-37F5-4309-8A92-42F1A6589EEE}.Debug|ARM.ActiveCfg = Debug|Any CPU
+ {A0471165-37F5-4309-8A92-42F1A6589EEE}.Debug|ARM.Build.0 = Debug|Any CPU
+ {A0471165-37F5-4309-8A92-42F1A6589EEE}.Debug|ARM.Deploy.0 = Debug|Any CPU
+ {A0471165-37F5-4309-8A92-42F1A6589EEE}.Debug|ARM64.ActiveCfg = Debug|Any CPU
+ {A0471165-37F5-4309-8A92-42F1A6589EEE}.Debug|ARM64.Build.0 = Debug|Any CPU
+ {A0471165-37F5-4309-8A92-42F1A6589EEE}.Debug|ARM64.Deploy.0 = Debug|Any CPU
+ {A0471165-37F5-4309-8A92-42F1A6589EEE}.Debug|x64.ActiveCfg = Debug|Any CPU
+ {A0471165-37F5-4309-8A92-42F1A6589EEE}.Debug|x64.Build.0 = Debug|Any CPU
+ {A0471165-37F5-4309-8A92-42F1A6589EEE}.Debug|x64.Deploy.0 = Debug|Any CPU
+ {A0471165-37F5-4309-8A92-42F1A6589EEE}.Debug|x86.ActiveCfg = Debug|Any CPU
+ {A0471165-37F5-4309-8A92-42F1A6589EEE}.Debug|x86.Build.0 = Debug|Any CPU
+ {A0471165-37F5-4309-8A92-42F1A6589EEE}.Debug|x86.Deploy.0 = Debug|Any CPU
{A0471165-37F5-4309-8A92-42F1A6589EEE}.Release (APK)|Any CPU.ActiveCfg = Release (APK)|Any CPU
{A0471165-37F5-4309-8A92-42F1A6589EEE}.Release (APK)|Any CPU.Build.0 = Release (APK)|Any CPU
{A0471165-37F5-4309-8A92-42F1A6589EEE}.Release (APK)|Any CPU.Deploy.0 = Release (APK)|Any CPU
+ {A0471165-37F5-4309-8A92-42F1A6589EEE}.Release (APK)|ARM.ActiveCfg = Release (APK)|Any CPU
+ {A0471165-37F5-4309-8A92-42F1A6589EEE}.Release (APK)|ARM.Build.0 = Release (APK)|Any CPU
+ {A0471165-37F5-4309-8A92-42F1A6589EEE}.Release (APK)|ARM.Deploy.0 = Release (APK)|Any CPU
+ {A0471165-37F5-4309-8A92-42F1A6589EEE}.Release (APK)|ARM64.ActiveCfg = Release (APK)|Any CPU
+ {A0471165-37F5-4309-8A92-42F1A6589EEE}.Release (APK)|ARM64.Build.0 = Release (APK)|Any CPU
+ {A0471165-37F5-4309-8A92-42F1A6589EEE}.Release (APK)|ARM64.Deploy.0 = Release (APK)|Any CPU
+ {A0471165-37F5-4309-8A92-42F1A6589EEE}.Release (APK)|x64.ActiveCfg = Release (APK)|Any CPU
+ {A0471165-37F5-4309-8A92-42F1A6589EEE}.Release (APK)|x64.Build.0 = Release (APK)|Any CPU
+ {A0471165-37F5-4309-8A92-42F1A6589EEE}.Release (APK)|x64.Deploy.0 = Release (APK)|Any CPU
+ {A0471165-37F5-4309-8A92-42F1A6589EEE}.Release (APK)|x86.ActiveCfg = Release (APK)|Any CPU
+ {A0471165-37F5-4309-8A92-42F1A6589EEE}.Release (APK)|x86.Build.0 = Release (APK)|Any CPU
+ {A0471165-37F5-4309-8A92-42F1A6589EEE}.Release (APK)|x86.Deploy.0 = Release (APK)|Any CPU
{A0471165-37F5-4309-8A92-42F1A6589EEE}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A0471165-37F5-4309-8A92-42F1A6589EEE}.Release|Any CPU.Build.0 = Release|Any CPU
{A0471165-37F5-4309-8A92-42F1A6589EEE}.Release|Any CPU.Deploy.0 = Release|Any CPU
+ {A0471165-37F5-4309-8A92-42F1A6589EEE}.Release|ARM.ActiveCfg = Release|Any CPU
+ {A0471165-37F5-4309-8A92-42F1A6589EEE}.Release|ARM.Build.0 = Release|Any CPU
+ {A0471165-37F5-4309-8A92-42F1A6589EEE}.Release|ARM.Deploy.0 = Release|Any CPU
+ {A0471165-37F5-4309-8A92-42F1A6589EEE}.Release|ARM64.ActiveCfg = Release|Any CPU
+ {A0471165-37F5-4309-8A92-42F1A6589EEE}.Release|ARM64.Build.0 = Release|Any CPU
+ {A0471165-37F5-4309-8A92-42F1A6589EEE}.Release|ARM64.Deploy.0 = Release|Any CPU
+ {A0471165-37F5-4309-8A92-42F1A6589EEE}.Release|x64.ActiveCfg = Release|Any CPU
+ {A0471165-37F5-4309-8A92-42F1A6589EEE}.Release|x64.Build.0 = Release|Any CPU
+ {A0471165-37F5-4309-8A92-42F1A6589EEE}.Release|x64.Deploy.0 = Release|Any CPU
+ {A0471165-37F5-4309-8A92-42F1A6589EEE}.Release|x86.ActiveCfg = Release|Any CPU
+ {A0471165-37F5-4309-8A92-42F1A6589EEE}.Release|x86.Build.0 = Release|Any CPU
+ {A0471165-37F5-4309-8A92-42F1A6589EEE}.Release|x86.Deploy.0 = Release|Any CPU
+ {AC7E8D95-1E2A-409C-9A95-477C2AC8E47F}.Debug|Any CPU.ActiveCfg = Debug|x86
+ {AC7E8D95-1E2A-409C-9A95-477C2AC8E47F}.Debug|ARM.ActiveCfg = Debug|ARM
+ {AC7E8D95-1E2A-409C-9A95-477C2AC8E47F}.Debug|ARM.Build.0 = Debug|ARM
+ {AC7E8D95-1E2A-409C-9A95-477C2AC8E47F}.Debug|ARM.Deploy.0 = Debug|ARM
+ {AC7E8D95-1E2A-409C-9A95-477C2AC8E47F}.Debug|ARM64.ActiveCfg = Debug|ARM64
+ {AC7E8D95-1E2A-409C-9A95-477C2AC8E47F}.Debug|ARM64.Build.0 = Debug|ARM64
+ {AC7E8D95-1E2A-409C-9A95-477C2AC8E47F}.Debug|ARM64.Deploy.0 = Debug|ARM64
+ {AC7E8D95-1E2A-409C-9A95-477C2AC8E47F}.Debug|x64.ActiveCfg = Debug|x64
+ {AC7E8D95-1E2A-409C-9A95-477C2AC8E47F}.Debug|x64.Build.0 = Debug|x64
+ {AC7E8D95-1E2A-409C-9A95-477C2AC8E47F}.Debug|x64.Deploy.0 = Debug|x64
+ {AC7E8D95-1E2A-409C-9A95-477C2AC8E47F}.Debug|x86.ActiveCfg = Debug|x86
+ {AC7E8D95-1E2A-409C-9A95-477C2AC8E47F}.Debug|x86.Build.0 = Debug|x86
+ {AC7E8D95-1E2A-409C-9A95-477C2AC8E47F}.Debug|x86.Deploy.0 = Debug|x86
+ {AC7E8D95-1E2A-409C-9A95-477C2AC8E47F}.Release (APK)|Any CPU.ActiveCfg = Release|x64
+ {AC7E8D95-1E2A-409C-9A95-477C2AC8E47F}.Release (APK)|Any CPU.Build.0 = Release|x64
+ {AC7E8D95-1E2A-409C-9A95-477C2AC8E47F}.Release (APK)|Any CPU.Deploy.0 = Release|x64
+ {AC7E8D95-1E2A-409C-9A95-477C2AC8E47F}.Release (APK)|ARM.ActiveCfg = Release|ARM
+ {AC7E8D95-1E2A-409C-9A95-477C2AC8E47F}.Release (APK)|ARM.Build.0 = Release|ARM
+ {AC7E8D95-1E2A-409C-9A95-477C2AC8E47F}.Release (APK)|ARM.Deploy.0 = Release|ARM
+ {AC7E8D95-1E2A-409C-9A95-477C2AC8E47F}.Release (APK)|ARM64.ActiveCfg = Release|ARM64
+ {AC7E8D95-1E2A-409C-9A95-477C2AC8E47F}.Release (APK)|ARM64.Build.0 = Release|ARM64
+ {AC7E8D95-1E2A-409C-9A95-477C2AC8E47F}.Release (APK)|ARM64.Deploy.0 = Release|ARM64
+ {AC7E8D95-1E2A-409C-9A95-477C2AC8E47F}.Release (APK)|x64.ActiveCfg = Release|x64
+ {AC7E8D95-1E2A-409C-9A95-477C2AC8E47F}.Release (APK)|x64.Build.0 = Release|x64
+ {AC7E8D95-1E2A-409C-9A95-477C2AC8E47F}.Release (APK)|x64.Deploy.0 = Release|x64
+ {AC7E8D95-1E2A-409C-9A95-477C2AC8E47F}.Release (APK)|x86.ActiveCfg = Release|x86
+ {AC7E8D95-1E2A-409C-9A95-477C2AC8E47F}.Release (APK)|x86.Build.0 = Release|x86
+ {AC7E8D95-1E2A-409C-9A95-477C2AC8E47F}.Release (APK)|x86.Deploy.0 = Release|x86
+ {AC7E8D95-1E2A-409C-9A95-477C2AC8E47F}.Release|Any CPU.ActiveCfg = Release|x86
+ {AC7E8D95-1E2A-409C-9A95-477C2AC8E47F}.Release|ARM.ActiveCfg = Release|ARM
+ {AC7E8D95-1E2A-409C-9A95-477C2AC8E47F}.Release|ARM.Build.0 = Release|ARM
+ {AC7E8D95-1E2A-409C-9A95-477C2AC8E47F}.Release|ARM.Deploy.0 = Release|ARM
+ {AC7E8D95-1E2A-409C-9A95-477C2AC8E47F}.Release|ARM64.ActiveCfg = Release|ARM64
+ {AC7E8D95-1E2A-409C-9A95-477C2AC8E47F}.Release|ARM64.Build.0 = Release|ARM64
+ {AC7E8D95-1E2A-409C-9A95-477C2AC8E47F}.Release|ARM64.Deploy.0 = Release|ARM64
+ {AC7E8D95-1E2A-409C-9A95-477C2AC8E47F}.Release|x64.ActiveCfg = Release|x64
+ {AC7E8D95-1E2A-409C-9A95-477C2AC8E47F}.Release|x64.Build.0 = Release|x64
+ {AC7E8D95-1E2A-409C-9A95-477C2AC8E47F}.Release|x64.Deploy.0 = Release|x64
+ {AC7E8D95-1E2A-409C-9A95-477C2AC8E47F}.Release|x86.ActiveCfg = Release|x86
+ {AC7E8D95-1E2A-409C-9A95-477C2AC8E47F}.Release|x86.Build.0 = Release|x86
+ {AC7E8D95-1E2A-409C-9A95-477C2AC8E47F}.Release|x86.Deploy.0 = Release|x86
+ {A6F6DE35-0EB4-4D11-9FF9-F4601595B639}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {A6F6DE35-0EB4-4D11-9FF9-F4601595B639}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {A6F6DE35-0EB4-4D11-9FF9-F4601595B639}.Debug|ARM.ActiveCfg = Debug|Any CPU
+ {A6F6DE35-0EB4-4D11-9FF9-F4601595B639}.Debug|ARM.Build.0 = Debug|Any CPU
+ {A6F6DE35-0EB4-4D11-9FF9-F4601595B639}.Debug|ARM64.ActiveCfg = Debug|Any CPU
+ {A6F6DE35-0EB4-4D11-9FF9-F4601595B639}.Debug|ARM64.Build.0 = Debug|Any CPU
+ {A6F6DE35-0EB4-4D11-9FF9-F4601595B639}.Debug|x64.ActiveCfg = Debug|Any CPU
+ {A6F6DE35-0EB4-4D11-9FF9-F4601595B639}.Debug|x64.Build.0 = Debug|Any CPU
+ {A6F6DE35-0EB4-4D11-9FF9-F4601595B639}.Debug|x86.ActiveCfg = Debug|Any CPU
+ {A6F6DE35-0EB4-4D11-9FF9-F4601595B639}.Debug|x86.Build.0 = Debug|Any CPU
+ {A6F6DE35-0EB4-4D11-9FF9-F4601595B639}.Release (APK)|Any CPU.ActiveCfg = Release|Any CPU
+ {A6F6DE35-0EB4-4D11-9FF9-F4601595B639}.Release (APK)|Any CPU.Build.0 = Release|Any CPU
+ {A6F6DE35-0EB4-4D11-9FF9-F4601595B639}.Release (APK)|ARM.ActiveCfg = Release|Any CPU
+ {A6F6DE35-0EB4-4D11-9FF9-F4601595B639}.Release (APK)|ARM.Build.0 = Release|Any CPU
+ {A6F6DE35-0EB4-4D11-9FF9-F4601595B639}.Release (APK)|ARM64.ActiveCfg = Release|Any CPU
+ {A6F6DE35-0EB4-4D11-9FF9-F4601595B639}.Release (APK)|ARM64.Build.0 = Release|Any CPU
+ {A6F6DE35-0EB4-4D11-9FF9-F4601595B639}.Release (APK)|x64.ActiveCfg = Release|Any CPU
+ {A6F6DE35-0EB4-4D11-9FF9-F4601595B639}.Release (APK)|x64.Build.0 = Release|Any CPU
+ {A6F6DE35-0EB4-4D11-9FF9-F4601595B639}.Release (APK)|x86.ActiveCfg = Release|Any CPU
+ {A6F6DE35-0EB4-4D11-9FF9-F4601595B639}.Release (APK)|x86.Build.0 = Release|Any CPU
+ {A6F6DE35-0EB4-4D11-9FF9-F4601595B639}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {A6F6DE35-0EB4-4D11-9FF9-F4601595B639}.Release|Any CPU.Build.0 = Release|Any CPU
+ {A6F6DE35-0EB4-4D11-9FF9-F4601595B639}.Release|ARM.ActiveCfg = Release|Any CPU
+ {A6F6DE35-0EB4-4D11-9FF9-F4601595B639}.Release|ARM.Build.0 = Release|Any CPU
+ {A6F6DE35-0EB4-4D11-9FF9-F4601595B639}.Release|ARM64.ActiveCfg = Release|Any CPU
+ {A6F6DE35-0EB4-4D11-9FF9-F4601595B639}.Release|ARM64.Build.0 = Release|Any CPU
+ {A6F6DE35-0EB4-4D11-9FF9-F4601595B639}.Release|x64.ActiveCfg = Release|Any CPU
+ {A6F6DE35-0EB4-4D11-9FF9-F4601595B639}.Release|x64.Build.0 = Release|Any CPU
+ {A6F6DE35-0EB4-4D11-9FF9-F4601595B639}.Release|x86.ActiveCfg = Release|Any CPU
+ {A6F6DE35-0EB4-4D11-9FF9-F4601595B639}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
diff --git a/GUT.Schedule/GUT.Schedule/Activities/AboutActivity.cs b/GUT.Schedule/GUT.Schedule/Activities/AboutActivity.cs
deleted file mode 100644
index f3a8f6f..0000000
--- a/GUT.Schedule/GUT.Schedule/Activities/AboutActivity.cs
+++ /dev/null
@@ -1,86 +0,0 @@
-using Android.App;
-using Android.Content;
-using Android.Content.PM;
-using Android.OS;
-using Android.Support.V4.Text;
-using Android.Support.V7.App;
-using Android.Text.Method;
-using Android.Widget;
-using Newtonsoft.Json;
-using System.Collections.Generic;
-using System.Linq;
-using System.Net.Http;
-
-namespace GUT.Schedule.Activities
-{
- [Activity(Label = "@string/aboutTitle")]
- public class AboutActivity : AppCompatActivity
- {
- protected override async void OnCreate(Bundle savedInstanceState)
- {
- (string name, string handle, string link)[] contacts = new (string, string, string)[]
- {
- (Resources.GetText(Resource.String.websiteContact), "https://xfox111.net", "https://xfox111.net"),
- (Resources.GetText(Resource.String.twitterContact), "@xfox111", "https://twitter.com/xfox111"),
- (Resources.GetText(Resource.String.vkontakteContact), "@xfox.mike", "https://vk.com/xfox.mike"),
- ("LinkedIn", "@xfox", "https://linkedin.com/in/xfox"),
- ("GitHub", "@xfox111", "https://github.com/xfox111"),
- };
- (string name, string link)[] links = new (string, string)[]
- {
- (Resources.GetText(Resource.String.privacyPolicyLink), "https://xfox111.net/Projects/GUTSchedule/PrivacyPolicy.txt"),
- ("General Public License v3", "https://www.gnu.org/licenses/gpl-3.0"),
- (Resources.GetText(Resource.String.repositoryLink), "https://github.com/xfox111/gutschedule"),
- (Resources.GetText(Resource.String.notsLink), "http://tios.spbgut.ru/index.php"),
- (Resources.GetText(Resource.String.sutLink), "https://sut.ru"),
- };
-
- base.OnCreate(savedInstanceState);
- SetContentView(Resource.Layout.About);
- PackageInfo version = PackageManager.GetPackageInfo(PackageName, PackageInfoFlags.MatchAll);
- FindViewById(Resource.Id.version).Text = $"v{version.VersionName} (ci-id #{version.VersionCode})";
-
- FindViewById