Release Notes

RSS for tag

Learn about changes to the SDKs and tools using Release Notes.

Posts under Release Notes tag

46 Posts

Post

Replies

Boosts

Views

Activity

Account per VPN
Hello, I hope I am in the right place. I have a question about "account via VPN" for my mobileconfig. I found this link on the internet (https://support.apple.com/de-de/guide/mdm/mdm2e7ee35ec/web) Account via VPN is advertised. However, I can not find anything in the VPN Payload Developer Guide. Also I can not find anything on the Internet. I find only App per VPN. But what about "Account via VPN"? (https://developer.apple.com/documentation/devicemanagement/vpn) does anyone know where I can find the VPN Payload? or does anyone have a piece of code please? Thanks a lot Best Regards Vetozzz
2
0
1.9k
Nov ’21
SDK path collision
Dear expert, The version of the macOS is 11.2.3. I was running an application called ROOT from CERN from the command line, and it shows up the following warning when I source the bash script: 2021-09-12 23:42:45.936 xcodebuild[1188:32958] [MT] DVTSDK: Warning: SDK path collision for path 'DVTFilePath:0x7f82d674d8d0:'/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.1.sdk'': SDK with name 'macosx11.1' being superseded by SDK with 'macosx11.1'. And when I try to run the executable, it shows the following error: ERROR in cling::CIFactory::createCI(): cannot extract standard library include paths! Invoking:   LC_ALL=C /Library/Developer/CommandLineTools/usr/bin/c++   -O3 -DNDEBUG -xc++ -E -v /dev/null 2>&1 | sed -n -e '/^.include/,${' -e '/^ /.*++/p' -e '}' Results was: With exit code 0 warning: no such sysroot directory: '/Library/Developer/CommandLineTools/SDKs/MacOSX11.0.sdk' I go to the /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs and find both MacOSX11.0.sdk and MacOSX11.1.sdk exist and are linked to MacOSX.sdk. I go to the /Library/Developer/CommandLineTools/SDKs/MacOSX11.0.sdk and the MacOSX11.0.sdk is there. Please help me debug. Thank you.
1
0
1.4k
Sep ’21
NSOutlineView issues after Xcode 12 / latest SDK update (Big Sur vs. earlier OS versions)
Our Mac app targets 10.13 and later. A number of minor but hard to fix appearance issues showed up in an NSOutlineView after we updated to Xcode 12 and the latest SDK. The outline view is created in code (not from .xib) and is view-based. When the outline view has top-level parents toggled open and you scroll down, the topmost parent will 'freeze' in place in the first row of the table to show what container you are in. This still functions properly, however under 10.15.x and earlier our outline view apparently no longer draws an opaque control background on the table row, so you see the child item view contents scrolling up behind the frozen parent row, making it illegible. This bug does not occur on Big Sur, where it still appears correctly. It also appeared correct on older OS's right up until we updated to the latest Xcode / SDK. There have been a few other appearance changes in NSOutlineView that were solely caused by this update, so this makes me think that this is due to some change in the NSOutlineView implementation. The Big Sur release notes mention only a change in default row height (which we did see and were able to fix easily). Can anyone offer guidance on how to make a table row (not cell) explicitly opaque in the latest SDK's NSOutlineView, and have it work properly on earlier OS's? Also is there any release note on this granularity of change in the SDK that might offer guidance, apart from the Big Sur release notes? Thank you!
0
0
1.1k
Sep ’21
About deleting duplicate applications
There is a task to create and place in the AppStore four applications for four different companies, which according to the customer should differ only in decoration: colors, pictures, etc. The apps themselves are not mass-market and will be used for the organization's internal needs (finance and loans) The question is - will such applications be considered duplicates and will they be removed from the app store?
0
0
505
Jul ’21
Account per VPN
Hello, I hope I am in the right place. I have a question about "account via VPN" for my mobileconfig. I found this link on the internet (https://support.apple.com/de-de/guide/mdm/mdm2e7ee35ec/web) Account via VPN is advertised. However, I can not find anything in the VPN Payload Developer Guide. Also I can not find anything on the Internet. I find only App per VPN. But what about "Account via VPN"? (https://developer.apple.com/documentation/devicemanagement/vpn) does anyone know where I can find the VPN Payload? or does anyone have a piece of code please? Thanks a lot Best Regards Vetozzz
Replies
2
Boosts
0
Views
1.9k
Activity
Nov ’21
App Crashes on iOS 14.6 and above
The app was working fine but suddenly it stoped working on devices that have iOS 14.6 and above. I use Xamarin Forms and Visual Studio. The SDK options in Visual Studio (iOS Build) are 14.5 and Default(I don't know what default means) The users with this problem can't even open the app.
Replies
3
Boosts
0
Views
1.6k
Activity
Nov ’21
SDK path collision
Dear expert, The version of the macOS is 11.2.3. I was running an application called ROOT from CERN from the command line, and it shows up the following warning when I source the bash script: 2021-09-12 23:42:45.936 xcodebuild[1188:32958] [MT] DVTSDK: Warning: SDK path collision for path 'DVTFilePath:0x7f82d674d8d0:'/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.1.sdk'': SDK with name 'macosx11.1' being superseded by SDK with 'macosx11.1'. And when I try to run the executable, it shows the following error: ERROR in cling::CIFactory::createCI(): cannot extract standard library include paths! Invoking:   LC_ALL=C /Library/Developer/CommandLineTools/usr/bin/c++   -O3 -DNDEBUG -xc++ -E -v /dev/null 2>&1 | sed -n -e '/^.include/,${' -e '/^ /.*++/p' -e '}' Results was: With exit code 0 warning: no such sysroot directory: '/Library/Developer/CommandLineTools/SDKs/MacOSX11.0.sdk' I go to the /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs and find both MacOSX11.0.sdk and MacOSX11.1.sdk exist and are linked to MacOSX.sdk. I go to the /Library/Developer/CommandLineTools/SDKs/MacOSX11.0.sdk and the MacOSX11.0.sdk is there. Please help me debug. Thank you.
Replies
1
Boosts
0
Views
1.4k
Activity
Sep ’21
NSOutlineView issues after Xcode 12 / latest SDK update (Big Sur vs. earlier OS versions)
Our Mac app targets 10.13 and later. A number of minor but hard to fix appearance issues showed up in an NSOutlineView after we updated to Xcode 12 and the latest SDK. The outline view is created in code (not from .xib) and is view-based. When the outline view has top-level parents toggled open and you scroll down, the topmost parent will 'freeze' in place in the first row of the table to show what container you are in. This still functions properly, however under 10.15.x and earlier our outline view apparently no longer draws an opaque control background on the table row, so you see the child item view contents scrolling up behind the frozen parent row, making it illegible. This bug does not occur on Big Sur, where it still appears correctly. It also appeared correct on older OS's right up until we updated to the latest Xcode / SDK. There have been a few other appearance changes in NSOutlineView that were solely caused by this update, so this makes me think that this is due to some change in the NSOutlineView implementation. The Big Sur release notes mention only a change in default row height (which we did see and were able to fix easily). Can anyone offer guidance on how to make a table row (not cell) explicitly opaque in the latest SDK's NSOutlineView, and have it work properly on earlier OS's? Also is there any release note on this granularity of change in the SDK that might offer guidance, apart from the Big Sur release notes? Thank you!
Replies
0
Boosts
0
Views
1.1k
Activity
Sep ’21
Different release notes based on country
Hi , I want to ask is there a way I can have different release notes for same version of app for different countries. For example I want to publish 2.x.x version in stores and US I want to have release notes A and for UK I want to have release notes B.
Replies
0
Boosts
0
Views
477
Activity
Aug ’21
About deleting duplicate applications
There is a task to create and place in the AppStore four applications for four different companies, which according to the customer should differ only in decoration: colors, pictures, etc. The apps themselves are not mass-market and will be used for the organization's internal needs (finance and loans) The question is - will such applications be considered duplicates and will they be removed from the app store?
Replies
0
Boosts
0
Views
505
Activity
Jul ’21