Remove iOS "import from stable" for now

This commit is contained in:
Dean Herbert 2019-10-31 19:18:54 +09:00
parent f13dc93a4d
commit e3ca64bb8c
3 changed files with 4 additions and 8 deletions

View File

@ -67,7 +67,7 @@ public abstract class ArchiveModelManager<TModel, TFileModel> : ICanAcceptFiles,
public virtual string[] HandledExtensions => new[] { ".zip" };
public virtual bool SupportsImportFromStable => (RuntimeInfo.IsDesktop || RuntimeInfo.OS == RuntimeInfo.Platform.iOS);
public virtual bool SupportsImportFromStable => RuntimeInfo.IsDesktop;
protected readonly FileStore Files;

View File

@ -34,9 +34,9 @@
<key>UIStatusBarHidden</key>
<true/>
<key>NSCameraUsageDescription</key>
<string>We don't really use the camera.</string>
<key>NSMicrophoneUsageDescription</key>
<string>We don't really use the microphone.</string>
<string>We don&apos;t really use the camera.</string>
<key>NSMicrophoneUsageDescription</key>
<string>We don&apos;t really use the microphone.</string>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
@ -111,8 +111,6 @@
</array>
</dict>
</array>
<key>UIFileSharingEnabled</key>
<true/>
<key>CFBundleURLTypes</key>
<array>
<dict>

View File

@ -3,14 +3,12 @@
using System;
using Foundation;
using osu.Framework.Platform;
using osu.Game;
namespace osu.iOS
{
public class OsuGameIOS : OsuGame
{
public override Storage GetStorageForStableInstall() => Storage;
public override Version AssemblyVersion => new Version(NSBundle.MainBundle.InfoDictionary["CFBundleVersion"].ToString());
}
}