Post

Replies

Boosts

Views

Activity

Cannot include com.apple.developer.driverkit.transport.usb into provision profile
We requested com.apple.developer.driverkit.transport.usb entitlement a few days ago and it looks like it was granted since we see(can select) it at: App Id -> Additional Capabilities Tab -> DriverKit USB Transport - Vendor ID. We tried to choose both options at Additional Entitlements page Default and Driver Kit and System Extension Template for **** Mac Dev. Generated profile displays DriverKit USB Transport - Vendor ID in Enabled Capabilities in browser. However downloaded profile doesn't include com.apple.developer.driverkit.transport.usb. As a result our Driver fails to start and in Console we see: Driver: Unsatisfied entitlements: com.apple.developer.driverkit.transport.usb /Library/SystemExtensions/675FA894-8985-4D86-B0FF-B892B9AEA27B/Driver.dext/Driver signature not valid: -67671 BTW, we tried to modify existing profile and create a new one. Did we miss something? Is any way to check entitlement status with Apple support?
3
2
2.1k
Jun ’22
Cannot communicate with DriverKit extension from macOs App due to IOServiceOpen error
We inspired by announce that DriverKit will come to iPadOs this fall and decided to experiment with DriverKit on macOS. We started from scratch but followed all the recommendations from Sample. With our installer code we can: Install driver extension to macOS system. (systemextensionsctl list shows [activated enabled]) for our driver See driver record using ioreg. So it's displayed: MyDriver <class IOUserService, id 0x10000193b, registered, matched, active, busy 0 (0 ms), retain 7> See *.MyDriver process in Activity Monitor In client code we can find a match: private let dextIdentifier = "MyDriver" private var lastResult: kern_return_t = kIOReturnSuccess private var connection: io_connect_t = IO_OBJECT_NULL var iterator: io_iterator_t = IO_OBJECT_NULL var driver: io_service_t = IO_OBJECT_NULL lastResult = IOServiceGetMatchingServices(kIOMasterPortDefault, IOServiceNameMatching(dextIdentifier), &iterator) print("Search for services ...") while case let service = IOIteratorNext(iterator), service != IO_OBJECT_NULL { driver = service } IOObjectRelease(iterator) guard driver != IO_OBJECT_NULL else { return } So driver is not IO_OBJECT_NULL. But we stuck on IOServiceOpen. So code: lastResult = IOServiceOpen(driver, mach_task_self_, UInt32(kIOHIDServerConnectType), &connection); validateLastResult(forOperation: "opening service") prints opening service: (iokit/common) general error since IOServiceOpen returns 0x2bc What we tried: Disable SIP in recovery mode and set systemextensionsctl developer on Result: opening service: (iokit/common) general error Add com.apple.developer.driverkit.userclient-access to our client App. Result: App crashes on start and in Console we see: taskgated-helper - Unsatisfied entitlements: com.apple.developer.driverkit.userclient-access. We requested this entitlement. We found post were com.apple.developer.driverkit.allow-any-userclient-access suggested as solution. Result: Driver extension is not started and we see in Console: taskgated-helper MyDriver: Unsatisfied entitlements: com.apple.developer.driverkit.allow-any-userclient-access amfid /Library/SystemExtensions/B7624EEF-3688-4735-A58B-26FEF4DE353C/MyDriver.dext/MyDriver signature not valid: -67671 We recreated appIds, profiles on developer account that has com.apple.developer.driverkit.allow-any-userclient-access from Apple. Result: Driver extension is started but we still see opening service: (iokit/common) general error We modified CommunicatingBetweenADriverKitExtensionAndAClientApp.zip by setting our appIds and profiles and run in in SIP disabled mode. Result: opening service: (iokit/common) general error Our environment: macOS Monterey 12.4 XCode Version 13.4 (13F17a) Driver Code is pretty straightforward: ///// iig class MyDriver: public IOUserClient { public: virtual bool init(void) override; virtual kern_return_t Start(IOService * provider) override; virtual kern_return_t Stop(IOService* provider) override; virtual void free(void) override; }; ///// cpp #define Log(fmt, ...) os_log(OS_LOG_DEFAULT, "MyDriver - " fmt "\n", ##__VA_ARGS__) struct MyDriver_IVars { OSAction* callbackAction = nullptr; }; bool MyDriver::init() { bool result = false; Log("init()"); result = super::init(); if (result != true) { Log("init() - super::init failed."); goto Exit; } ivars = IONewZero(MyDriver_IVars, 1); if (ivars == nullptr) { Log("init() - Failed to allocate memory for ivars."); goto Exit; } Log("init() - Finished."); return true; Exit: return false; } kern_return_t IMPL(MyDriver, Start) { kern_return_t ret; ret = Start(provider, SUPERDISPATCH); if(ret != kIOReturnSuccess) { Log("Start() - super::Start failed with error: 0x%08x.", ret); goto Exit; } ret = RegisterService(); if (ret != kIOReturnSuccess) { Log("Start() - Failed to register service with error: 0x%08x.", ret); goto Exit; } Log("Start() - Finished."); ret = kIOReturnSuccess; Exit: return ret; } kern_return_t IMPL(MyDriver, Stop) { kern_return_t ret = kIOReturnSuccess; Log("Stop()"); ret = Stop(provider, SUPERDISPATCH); if (ret != kIOReturnSuccess) { Log("Stop() - super::Stop failed with error: 0x%08x.", ret); } return ret; } void MyDriver::free(void) { Log("free()"); IOSafeDeleteNULL(ivars, MyDriver_IVars, 1); super::free(); }
2
3
1.8k
Jun ’22
Incredible huge .xcresult is generated by Xcode 13.2.1 in case of failure
We use .xcresult files on our CI and recently noticed that size of file significantly increased. So previously we had files ~ 50 MB but now they are ~ 300 MB. After investigation of .xcresult contents we found that it contains macOS Logs - test-session-systemlogs-2022.01.05_13-13-07-+0000 In testmanagerd .log we see in a last line: Moved logarchive from /var/tmp/test-session-systemlogs-2022.01.05_13-13-07-+0000.logarchive to ../Staging/1_Test/Diagnostics/My Mac_4203018E-580F-C1B5-9525-B745CECA79EB/test-session-systemlogs-2022.01.05_13-13-07-+0000.logarchive Issue is reproducible on a new project. Steps: File -> New -> Project Select macOS -> App Enable include test For simplicity disable(comment) all the UITests except ResultSampleUITests::testExample Add XCTAssertTrue(false) after app.launch() Run tests from console and specify path to resultBundlePath xcodebuild -project ResultSample.xcodeproj -scheme ResultSample -resultBundlePath ~/Downloads/2/all-tests -test-timeouts-enabled YES test 7. When tests are finished navigate to resultBundlePath and check size of all-tests.xcresult. It has size 51.6 MB for me. If change XCTAssertTrue(false) to XCTAssertTrue(true) then size of all-tests.xcresult is decreased to 31 KB. Any idea how to disable/delete macOS diagnostic logs or decrease a size of .xcresult
9
3
4.5k
Jan ’22
Button.keyboardShortcut(.defaultAction) doesn't properly work on macOS Monterey
In following code example: struct ContentView: View {     @State var text: String = "sample text"     var body: some View {         VStack {             TextField("", text: $text)             Button(action: { print("action performed!") }) {                 Text("Click me")             }             .keyboardShortcut(.defaultAction)         }         .padding(40)     } } .keyboardShortcut(.defaultAction) that is attached to Button perfectly works on macOs Big Sur(11.6) and I see "action performed!" in Xcode console when tap Enter key on keyboard. Unfortunately, same example doesn't work on macOs Monterey(12.0.1) and Xcode 13.1. So nothing happens(I don't see any logs) when I tap Enter key on keyboard. Also I noticed that it happens only when focus is set in TextField. I checked that onSubmit can solve this issue. Unfortunately, I can't use since it's available in macOs 12 or newer but my App has deployment target is macOs 11. So any workarounds are welcomed.
6
1
2k
Nov ’21
testmanagerd constantly requests password to enable UI Automation on macOS Monterey
We updated our CI machine to: macOS Monterey Version 12.0.1 Xcode Version 13.1 (13A1030d) We started to receive UITest failures with following error: Testing failed: MemoryLeaksUITests: MemoryLeaksUITests-Runner (3507) encountered an error (The test runner failed to initialize for UI testing. If you believe this error represents a bug, please attach the result bundle at /Users/dev/Library/Developer/Xcode/DerivedData/MemoryLeaks-dduvihbyiuzwdnawggthtfwdgwks/Logs/Test/Test-MemoryLeaks-2021.11.05_13-43-58-+0300.xcresult. (Underlying Error: Timed out while enabling automation mode.)) The failure disappears if we enable UIAutomation for testmanagerd by providing password However it's not one time action. This permission dialog still appears after some time during a day. We noticed it constantly appears after machine reboot. Unfortunately it blocks us from using our CI machine as test runner. There is no option(checkbox) to permanently enable(provide password) automation in this dialog. Also it's not possible to add it in Settings -> Security & Privacy -> Privacy - Automation. Here is a sample project on GitHub to reproduce the issue. Steps: Reboot machine Run in terminal xcodebuild -target MemoryLeaksUITests -scheme MemoryLeaks test
4
0
4k
Nov ’21
.accessibilityElement(children: .contain) produces memory leaks in UITests
We were encourage by Frameworks Engineer reply and Apple's Official Docs and started to use this approach in our App. But next we detected that App has leaked objects when we do Memory Graph Check in UITests. Removing of .accessibilityElement(children: .contain) solves the issue but we still want to use container identifiers in our UITests. Here is a sample project to illustrated and reproduce the issue: https://github.com/yuri-qualtie/MemoryLeaks. All the details and steps are described in Readme We need help with fix for .accessibilityElement(children: .contain) but any workaround is welcomed
6
0
2.4k
Aug ’21
How to change color of SwiftUI's Alert.Button.destructive on macOS
We have SwiftUI Alert with destructive button - "Yes, sign out"? Alert( title: Text("Are you sure you want to sign out?"), message: Text("Some message"), primaryButton: .cancel( Text("No, don’t sign out") ), secondaryButton: .destructive( Text("Yes, sign out"), action: { print("signOut") } ) ) Button's text is displayed in pale pink but according to our design we want to change it to dark red. As an option we want change button's color as well. How we can accomplish it? As a side note: we found that for iOS we probably can utilise UIView.appearance(whenContainedInInstancesOf: API but it's available only on iOS but we are interested in solution for macOS
0
0
1.3k
May ’21
Launch argument "-AppleLocale en_US" doesn't change measurement system(units) to "US" on MacOs
We used Locale::usesMetricSystem to distinguish between metric and Imperial(US) measurement systems. We set "-AppleLocale en_US" as launch argument for App in UITests but usesMetricSystem still returns true in case user's locale are not equal to "US" in System Preferences - Language and Region - Region. Here is a demo project to illustrate the issue: https://github.com/yuri-qualtie/UseMetricSystemDemo Precondition: Change user region to not US(for example Australia) in System Preferences - Language and Region - Region We expect that code: print(Locale.current.usesMetricSystem) prints false when -AppleLocale en_US is set but actual result is true Probably there is alternative way how to change measurement system via launch arguments or App's settings in Xcode?
16
0
6.4k
Apr ’21
Adding print to Just changes behaviour of Combine sequence
Code block below produces different results depending on if print is commented or not: import Combine var cancellables = SetAnyCancellable() enum FruitError: Error { case bad } var fruit = "apple" func getFruit() - String { fruit } Just(getFruit) //.print() .map{$0()} .flatMap { value - AnyPublisherString, FruitError in print("in flat map \(value)") if value == "apple" { fruit = "pineapple" return Fail(error: FruitError.bad).eraseToAnyPublisher() } return Just("banana").setFailureType(to: FruitError.self).eraseToAnyPublisher() } .retry(1) .sink(receiveCompletion: { print($0) }, receiveValue: {print($0)}) .store(in: &amp;cancellables) Without print: in flat map apple in flat map apple failure With print: in flat map apple in flat map pineapple banana receive finished finished receive finished Why does print or any other debug operator(breakpoint or handleEvent) change behaviour of sequence? Playground without print - https://developer.apple.com/forums/content/attachment/d8a1d043-191b-41f3-8f0e-72dafa621374 Playground with print - https://developer.apple.com/forums/content/attachment/7c0de4c2-37fb-4136-ae8e-5ed0e77287c5
4
0
1.2k
Mar ’21