Search results for

“Visual Studio Maui IOS”

109,120 results found

Post

Replies

Boosts

Views

Activity

Reply to ABM API Problems with C# and PEM file
Thanks for the post! You should check with the support resources provided by the 3rd party to get assistance with their software as it seems like your are using MAUI or Xamarin? Unless another developer in the forums has experience with the third-party and can provide assistance. Albert Pascual
  Worldwide Developer Relations.
Oct ’25
Reply to Privacy report from command line
This is an annoyance for us too. We don't use Xcode directly, we are building apps with .NET MAUI. It would be useful to generate the privacy report as part of the CI/CD workflow. Having to load the archive into the product organizer and then control-click the archive to generate the report is clunky.
Topic: App & System Services SubTopic: Core OS Tags:
Apr ’24
Preview Crashes with glitched visuals
When working on my Xcode project and using Previews from time to time I find preview crashes and ens up with the image below. The UI is completely unresponsive and only way to bring it back I find is close and relaunch Xcode. Anyone else experience this - is there a known fix or a better way to kick preview to restart that doesn't involve full relaunch of XCode
2
0
372
Dec ’24
MATCH_ATTEMPT_FAILED error on Android Studio Java+Kotlin
Getting MatchError MATCH_ATTEMPT_FAILED everytime when matchstream on Android Studio Java+Kotlin project. My project reads the samples from the mic input using audioRecord class and sents them to the Shazamkit to matchstream. I created a kotlin class to handle to Shazamkit. The audioRecord is build to be mono and 16 bit. My Kotlin Class class ShazamKitHelper { val shazamScope = CoroutineScope(Dispatchers.IO + SupervisorJob()) lateinit var streaming_session: StreamingSession lateinit var signature: Signature lateinit var catalog: ShazamCatalog fun createStreamingSessionAsync(developerTokenProvider: DeveloperTokenProvider, readBufferSize: Int, sampleRate: AudioSampleRateInHz ): CompletableFuture{ return CompletableFuture.supplyAsync { runBlocking { runCatching { shazamScope.launch { createStreamingSession(developerTokenProvider,readBufferSize,sampleRate) }.join() }.onFailure { throwable -> }.getOrThrow() } } } private suspend fun createStreamingSession(developerTokenProvider:DeveloperTokenProvider,r
0
0
561
Dec ’24
launching iOS app on a device
i am trying to run my iOS app on my iphone device using Xamarin via visual studio 2017 , i am facing an error : ErrorNo valid iOS code signing keys found in keychain. You need to request a codesigning certificate from https://developer.apple.com. any body to help known that i have delveloper id but not signed in on visual studio still searching for the option where i could do it
0
0
459
Oct ’17
Visualize AVPlayer track while playing a streamed m3u8 file
I am simply trying to visualize m3u8 files from my Amazon S3 server while they are playing on my AVPlayer. The basic context of my AVPlayer is that I first create AVURLAsset and attach the cookies required to access it and then subsequently create the AVPlayerItem. I then setup the AVPlayer, play it, and then setup an observer so that I can handle some logic when the audio file is done playing. I just want to be able to get the power data of the streamed file in real time or close to real time. I looked into audioTapProcessor but it does not appear to work with streamed files. I then looked into AVAudioEngine but that also does not work well with streams. Is there any solution to this?
0
0
835
May ’23
Reply to Debug passkit network communications
Hi Tacca Studio,At a minimum, do you see the HTTP calls in your web server log files?Are you able to see registrations and de-registrations working on your Passbook web service implementation?Are you trying this with the Simulator or a physical iOS device?Simulator for Wallet/Passbook is broken. 😟- Simon.
Nov ’15
Reply to Mac Studio – Wake from sleep – Desktop picture not stretching to fill Desktop
With my new M2 Mac Studio same issue. On waking up the Studio Displays show normal resolution and then take a moment to shift to my desired setting of more space...
Topic: Community SubTopic: Apple Developers Tags:
Replies
Boosts
Views
Activity
Jun ’23
Reply to Label issue - iOS 16 beta
This is expected. TextKit in iOS 16, especially with TextKit 2, includes improved line breaking algorithms designed to help make each line visually balanced in length.
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Jun ’22
Reply to ABM API Problems with C# and PEM file
Thanks for the post! You should check with the support resources provided by the 3rd party to get assistance with their software as it seems like your are using MAUI or Xamarin? Unless another developer in the forums has experience with the third-party and can provide assistance. Albert Pascual
  Worldwide Developer Relations.
Replies
Boosts
Views
Activity
Oct ’25
Reply to Can't install macOS Monterey beta on M1 external drive
I used SanDisk 1T with Apple thunderbolt cable ( important) installed it again today since my Mac Studio wouldn’t let me make external SSD boot Monterey so I made one on M1 Mac Mini and use it on Mac Studio
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’22
Reply to Privacy report from command line
This is an annoyance for us too. We don't use Xcode directly, we are building apps with .NET MAUI. It would be useful to generate the privacy report as part of the CI/CD workflow. Having to load the archive into the product organizer and then control-click the archive to generate the report is clunky.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Apr ’24
Reply to Automatic Provisioning fails in VisualStudio 2022
Thanks for the post. It seems a question for .NET Maui. You should check with the support resources provided by the 3rd party to get assistance with their software. Unless another developer in the forums has experience with the third-party and can provide assistance. Albert Pascual
  Worldwide Developer Relations.
Replies
Boosts
Views
Activity
Sep ’25
SwiftUI visual effect view
Is there an easier way to use a vibrant / blur container view in SwiftUI now other than to use a hosted UIView?
Replies
0
Boosts
0
Views
899
Activity
Jun ’20
Strange visual effect of the searchbar
As you can see, when I swipe to see the context actions in the collectionview, the searchbar flicks. Same story when, in a popover, i change the PreferredContentSize.
Topic: UI Frameworks SubTopic: UIKit
Replies
2
Boosts
0
Views
321
Activity
Sep ’24
Preview Crashes with glitched visuals
When working on my Xcode project and using Previews from time to time I find preview crashes and ens up with the image below. The UI is completely unresponsive and only way to bring it back I find is close and relaunch Xcode. Anyone else experience this - is there a known fix or a better way to kick preview to restart that doesn't involve full relaunch of XCode
Replies
2
Boosts
0
Views
372
Activity
Dec ’24
MATCH_ATTEMPT_FAILED error on Android Studio Java+Kotlin
Getting MatchError MATCH_ATTEMPT_FAILED everytime when matchstream on Android Studio Java+Kotlin project. My project reads the samples from the mic input using audioRecord class and sents them to the Shazamkit to matchstream. I created a kotlin class to handle to Shazamkit. The audioRecord is build to be mono and 16 bit. My Kotlin Class class ShazamKitHelper { val shazamScope = CoroutineScope(Dispatchers.IO + SupervisorJob()) lateinit var streaming_session: StreamingSession lateinit var signature: Signature lateinit var catalog: ShazamCatalog fun createStreamingSessionAsync(developerTokenProvider: DeveloperTokenProvider, readBufferSize: Int, sampleRate: AudioSampleRateInHz ): CompletableFuture{ return CompletableFuture.supplyAsync { runBlocking { runCatching { shazamScope.launch { createStreamingSession(developerTokenProvider,readBufferSize,sampleRate) }.join() }.onFailure { throwable -> }.getOrThrow() } } } private suspend fun createStreamingSession(developerTokenProvider:DeveloperTokenProvider,r
Replies
0
Boosts
0
Views
561
Activity
Dec ’24
Reply to Ventura Hack for FireWire Core Audio Support on Supported MacBook Pro and others...
I will add, I am a professional Voice Actor with studio equipment that has required endless cables and adapters to accommodate new Mac upgrades but this is a real kick in the pants. I hope MAC places a real fix in the OS because this is the livelihood of many studio owners.
Topic: Media Technologies SubTopic: General Tags:
Replies
Boosts
Views
Activity
Feb ’23
Reply to macOS Monterey 12.3 Bluetooth connection problems since update
Same issue with beats studio 3
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Mar ’22
launching iOS app on a device
i am trying to run my iOS app on my iphone device using Xamarin via visual studio 2017 , i am facing an error : ErrorNo valid iOS code signing keys found in keychain. You need to request a codesigning certificate from https://developer.apple.com. any body to help known that i have delveloper id but not signed in on visual studio still searching for the option where i could do it
Replies
0
Boosts
0
Views
459
Activity
Oct ’17
Visualize AVPlayer track while playing a streamed m3u8 file
I am simply trying to visualize m3u8 files from my Amazon S3 server while they are playing on my AVPlayer. The basic context of my AVPlayer is that I first create AVURLAsset and attach the cookies required to access it and then subsequently create the AVPlayerItem. I then setup the AVPlayer, play it, and then setup an observer so that I can handle some logic when the audio file is done playing. I just want to be able to get the power data of the streamed file in real time or close to real time. I looked into audioTapProcessor but it does not appear to work with streamed files. I then looked into AVAudioEngine but that also does not work well with streams. Is there any solution to this?
Replies
0
Boosts
0
Views
835
Activity
May ’23
Reply to Debug passkit network communications
Hi Tacca Studio,At a minimum, do you see the HTTP calls in your web server log files?Are you able to see registrations and de-registrations working on your Passbook web service implementation?Are you trying this with the Simulator or a physical iOS device?Simulator for Wallet/Passbook is broken. 😟- Simon.
Replies
Boosts
Views
Activity
Nov ’15