Skip to content

Commit

Permalink
Made iOS 12-compatible CLI scheme
Browse files Browse the repository at this point in the history
  • Loading branch information
itsjunetime committed May 19, 2021
1 parent 7ba5408 commit d418980
Show file tree
Hide file tree
Showing 9 changed files with 550 additions and 71 deletions.
2 changes: 1 addition & 1 deletion src/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# platform :ios, '13.0'

target 'SMServer' do
platform :ios, '13.0'
platform :ios, '10.0'

# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
Expand Down
2 changes: 1 addition & 1 deletion src/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@ SPEC CHECKSUMS:
HTTPParserC: 1ed389f80bb57a5b967d87d5358b8a94418394ee
Telegraph: 6820cf262064f2c15a393fb56401834141d0310e

PODFILE CHECKSUM: 1bb0aef95dc81c8ff1cc4d6b8245696f7808ebe2
PODFILE CHECKSUM: 88f1a7d48b919080e93d3b7bb140b19786865688

COCOAPODS: 1.10.1
93 changes: 93 additions & 0 deletions src/SMServer copy-Info.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
<?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>CFBundleDevelopmentRegion</key>
<string>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleDocumentTypes</key>
<array>
<dict>
<key></key>
<string></string>
<key>LSHandlerRank</key>
<string>Default</string>
</dict>
</array>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
<key>CFBundleShortVersionString</key>
<string>$(MARKETING_VERSION)</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>CRConnectionKeepAliveTimeout</key>
<integer>600</integer>
<key>CRConnectionReadTimeoutKey</key>
<integer>600</integer>
<key>CRHTTPConnectionReadBodyTimeout</key>
<integer>600</integer>
<key>CRHTTPConnectionReadHeaderTimeout</key>
<integer>600</integer>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>LSSupportsOpeningDocumentsInPlace</key>
<true/>
<key>NSContactsUsageDescription</key>
<string>To get the name of your contacts</string>
<key>NSPhotoLibraryUsageDescription</key>
<string>To view &amp; send your photos from the web interface</string>
<key>UIApplicationSceneManifest</key>
<dict>
<key>UIApplicationSupportsMultipleScenes</key>
<false/>
<key>UISceneConfigurations</key>
<dict>
<key>UIWindowSceneSessionRoleApplication</key>
<array>
<dict>
<key>UISceneConfigurationName</key>
<string>Default Configuration</string>
<key>UISceneDelegateClassName</key>
<string>$(PRODUCT_MODULE_NAME).SceneDelegate</string>
</dict>
</array>
</dict>
</dict>
<key>UIBackgroundModes</key>
<array>
<string>continuous</string>
<string>fetch</string>
<string>processing</string>
<string>remote-notification</string>
<string>unboundedTaskCompletion</string>
<string>voip</string>
</array>
<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>UIRequiredDeviceCapabilities</key>
<array/>
<key>UIStatusBarStyle</key>
<string>UIStatusBarStyleDefault</string>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UISupportsDocumentBrowser</key>
<true/>
</dict>
</plist>
Loading

0 comments on commit d418980

Please sign in to comment.