Create the ini files with the appropriate command:
mame -createconfig
| ExportOptions.plist - Options in a better order | |
| Xcodebuild manfile says the following | |
| > **Distributing Archives** | |
| > The -exportArchive option specifies that xcodebuild should distribute the archive specified by -archivePath using the options specified by | |
| > -exportOptionsPlist. xcodebuild -help can print the full set of available inputs to -exportOptionsPlist. The product can either be uploaded to Apple or | |
| > exported locally. The exported product will be placed at the path specified by -exportPath. | |
| The following is the list of settings (as of Xcode 10.1) output by `xcodebuild --help` but in a more logical order. |
| import SwiftUI | |
| import UIKit | |
| class ProximityObserver { | |
| @objc func didChange(notification: NSNotification) { | |
| print("MyView::ProximityObserver.didChange") | |
| if let device = notification.object as? UIDevice { | |
| print(device.proximityState) | |
| } | |
| } |
| # note: the hash is located at offset 0x14, after the int32 magic (0xDCDCF5F5), int64 size, and int64 snapshot kind fields. | |
| # last update: 2025/01/07 | |
| # snapshot_hash,dart_version_tag | |
| 19ac30c2bacca37ef7691604e75be559,2.0.0 | |
| d120342d48b35fc67901acb723bb6e9f,2.0.0-dev.0.0 | |
| d120342d48b35fc67901acb723bb6e9f,2.0.0-dev.0.1 | |
| 53db5f61774a5fbc5ee04696b38726f8,2.0.0-dev.1.0 | |
| 3cebf13e885ccde5bf5d36d308390ddf,2.0.0-dev.10.0 | |
| 4980a5a9e7247ed5f306c8c565d193cc,2.0.0-dev.11.0 | |
| 8ed2b9130065c72a181a9a40e17387bd,2.0.0-dev.12.0 |