/r/Xamarin
Now open for business!
Talk about Xamarin and its awesome line up of solutions for mobile development!
/r/Xamarin
I have a Xamarin Forms iOS app I need to update, I know that this is the latest version supported by Xamarin but how do I install it given it has been end-of-lifed and support has ended? I think Apple are accepting SDK 17 uploads until April 2025. Unfortunately I'm doing this on a new machine and don't have it installed already. I'm hoping to build on Windows (paired with a Mac Mini) in Visual Studio.
I'm experiencing a freeze issue in Xamarin.Forms iOS SDK version 14.0 after updating to iOS 18. When I open the app, a modal for notifications appears. I can interact with the modal just fine, but once I close it, the app freezes and becomes unresponsive. I can't click anywhere. The only workaround I've found is switching to landscape mode and back to portrait, which unfreezes the app. However, the issue persists each time I relaunch the app. Has anyone else encountered this, or know of a fix?
I have simple TabView control and want to hide 'Tab 2' of the TabViewItem element.
The tab 2 was hidden by setting IsVisible="false" property, but I expect that only 2 tabs will remain in the view.
Is there any way to remove the empty space between 'tab 1' and 'tab 3'?
I can't just remove 'tab 2', because it will be used in some cases under certain conditions. In addition, I've noticed that hiding the 'tab 2' breaks the tab indicator's behavior for 'tab 3', because there is no yellow line above the tab.
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="App1.Views.AboutPage"
xmlns:vm="clr-namespace:App1.ViewModels"
xmlns:xct="http://xamarin.com/schemas/2020/toolkit"
Title="{Binding Title}">
<ContentPage.BindingContext>
<vm:AboutViewModel />
</ContentPage.BindingContext>
<ContentPage.Resources>
<ResourceDictionary>
<Color x:Key="Accent">#96d1ff</Color>
</ResourceDictionary>
</ContentPage.Resources>
<ContentPage.Content>
<Grid>
<AbsoluteLayout>
<xct:TabView TabStripPlacement="Top"
Grid.Row="0"
TabStripBackgroundColor="Blue"
IsTabStripVisible="True"
TabIndicatorColor="Yellow"
TabIndicatorPlacement="Top"
SelectedIndex="0"
IsSwipeEnabled="false"
x:Name="TabViewBox"
AbsoluteLayout.LayoutBounds="0,0,1,1" AbsoluteLayout.LayoutFlags="All">
<xct:TabViewItem Text="Tab 1" TextColor="White" TextColorSelected="Yellow">
<Grid BackgroundColor="Gray">
<Label HorizontalOptions="Center" VerticalOptions="Center" Text="TabContent1" />
</Grid>
</xct:TabViewItem>
<xct:TabViewItem Text="Tab 2" TextColor="White" TextColorSelected="Yellow" IsVisible="false">
<Grid BackgroundColor="Gray">
<Label HorizontalOptions="Center" VerticalOptions="Center" Text="TabContent2" />
</Grid>
</xct:TabViewItem>
<xct:TabViewItem x:Name="NewBoxes1Tab" Text="Tab 3" TextColor="White" TextColorSelected="Yellow">
<Grid BackgroundColor="Gray">
<Label HorizontalOptions="Center" VerticalOptions="Center" Text="TabContent3" />
</Grid>
</xct:TabViewItem>
</xct:TabView>
</AbsoluteLayout>
</Grid>
</ContentPage.Content>
</ContentPage>
I want to add one button in my Xamarin iOS app and when I click on that button I want to show screen mirroring device list in iPhone and when click on that device start the screen mirroring.
I want to add one button in my Xamarin iOS app and when I click on that button I want to show screen mirroring device list in iPhone and when click on that device start the screen mirroring.
Hi, Ive never tried this but can I build a xamarin/maui iOS app on my windows 11, paired to my mac and then build it in release and deploy the IPA file from my mac to the store using xcode or transporter and not have to install VS Code on my mac?
OR do i need to build the IPA file from VS Code on the mac?
Basically I just dont want to deal with VS Code.
thanks in advance
Im trying to play an mp3 file when a button is pushed. im trying to follow this guide but I cant add in the using android statement. Xamarin Android Lesson 4 - Playing Audio Files (youtube.com)
adding "using android.media;" gives me this:
Error CS0246 The type or namespace name 'Android' could not be found (are you missing a using directive or an assembly reference?) XamlSamples C:\Users\user\source\repos\XamlSamples\XamlSamples\XamlSamples\project.xaml.cs 9 Active
these are what I currently have in place
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xamarin.Essentials;
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
if there is a better method for this I am open for that too
Hi Everyone, I have a issue in sending email in xamarin forms. I tried many c# codes but i am receiving message couldn't be send.
I have used below code.
MailMessage mc = new MailMessage(System.Configuration.ConfigurationManager.AppSettings["Email"].ToString(), To);
mc.Subject = Subject;
mc.Body = Body;
mc.IsBodyHtml = false;
SmtpClient smtp = new SmtpClient("smtp.office365.com", 587);
smtp.Timeout = 1000000;
smtp.EnableSsl = true;
smtp.DeliveryMethod = SmtpDeliveryMethod.Network;
NetworkCredential nc = new NetworkCredential(System.Configuration.ConfigurationManager.AppSettings["Email"].ToString(), System.Configuration.ConfigurationManager.AppSettings["Password"].ToString());
smtp.UseDefaultCredentials = false;
smtp.Credentials = nc;
smtp.Send(mc);
In the android manifest i given below details
<uses-permission android:name="android.permission.INTERNET" /><queries><intent>
<action android:name="android.intent.action.SENDTO" />
<data android:scheme="mailto" />
</intent>
</queries>Could any one help me on this. I was trying this long back.
Hi everyone, I just wanted to let you know that I have released a new stable version of the Plugin.Maui.AppRating package.
FakeReviewManager
to Android.Check it out!
I’m doing a security assessment on this app and I’ve tried everything in my playbook to bypass cert pinning. Where should I look to patch this app so I can intercept traffic to the web API?
Hi everyone, I just wanted to let you know that I have released a new stable version of the Plugin.Maui.ScreenSecurity package.
- .Net8 support.
- iOS 17 issues fixed.
- iOS 17+ issue with screenshot prevention fixed.
Check it out!
I am completely new to Xamarin, and I need some help with how to update an image after the source changes. I know there is nothing wrong with my image itself, it just doesn't display after I select the image. Any help would be appreciated, I'm kinda lost
Hi, I am using the UsbSerialForAndroid, https://github.com/anotherlab/UsbSerialForAndroid for talking to devices over serial usb.
So far it worked fine and there were no issues. Now, I’m trying to work with a device which uses CP21xx driver which has two ports - “standard” and “enhanced”, my messages work on “standard” and I have changed the part of code in Android/drivers/CP21xx…cs to set the interface to the one with “Standard”, but my messages don’t get a response from the device.
Now, if I use a 3rd party app “Serial usb terminal” https://play.google.com/store/apps/details?id=de.kai_morich.serial_usb_terminal&hl=en_CA&gl=US , whose source code I don’t have first , send my messages, get the reply, and then use the UsbSerialForAndroid example app again, I now get responses to all my messages.
Note that the code or configuration doesn’t change for the UsbSerialForAndroid.
Also, once working, even if I close the app or send messages after a very long time , I still get replies, till the time I don’t remove the physical usb connection.
If I unplug and reply the usb or power cycle the device that uses the CP21x driver, then I again have to use the third party app first to get the UsbSerialForAndroid sample app working again.
I don’t know why it needs that third party app to connect and send the messages first although I don’t change anything in the UsbSerialForAndroid app between those two scenarios.
Can someone help me with this ?
Has anyone ever worked with CP21xx drivers with Android and usb serial ? Or anything similar that has two ports/ interfaces ?
2024-02-23 11:14:02.105 mlaunch[3786:50544] Requested but did not find extension point with identifier Xcode.IDEDebugger.VariablesViewQuickLookProvider for extension Xcode.SpriteKit.GKStateMachineQuickLookProvider of plug-in com.apple.IDESpriteKitParticleEditor
2024-02-23 11:14:02.105 mlaunch[3786:50544] Requested but did not find extension point with identifier Xcode.IDEDebugger.VariablesViewQuickLookProvider for extension Xcode.IDEDebugger.SpriteKitQuickLookProvider of plug-in com.apple.IDESpriteKitParticleEditor
2024-02-23 11:14:02.117 mlaunch[3786:50544] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.InfoEditorSlice for extension Xcode.Xcode3ProjectSupport.InfoEditorSlice.WatchOS.BundleInfo of plug-in com.apple.dt.IDEWatchSupportUI
2024-02-23 11:14:02.117 mlaunch[3786:50544] Requested but did not find extension point with identifier Xcode.DebuggerFoundation.ViewDescriber for extension Xcode.DebuggerFoundation.watchOS.ViewDescriber of plug-in com.apple.dt.IDEWatchSupportUI
2024-02-23 11:14:02.117 mlaunch[3786:50544] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.TargetSummaryEditor for extension Xcode.Xcode3ProjectSupport.TargetSummaryEditor.WatchOS.WatchKit2-AppExtension of plug-in com.apple.dt.IDEWatchSupportUI
2024-02-23 11:14:02.118 mlaunch[3786:50544] Requested but did not find extension point with identifier Xcode.IDEiPhoneSupport.TargetEditor for extension Xcode.IDEiPhoneSupport.TargetEditor.WatchOS.Application of plug-in com.apple.dt.IDEWatchSupportUI
2024-02-23 11:14:02.118 mlaunch[3786:50544] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.InfoEditorType for extension Xcode.Xcode3ProjectSupport.InfoEditorType.WatchOS.Bundle of plug-in com.apple.dt.IDEWatchSupportUI
2024-02-23 11:14:02.118 mlaunch[3786:50544] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.TargetSummaryEditor for extension Xcode.Xcode3ProjectSupport.TargetSummaryEditor.WatchOS.Tool of plug-in com.apple.dt.IDEWatchSupportUI
2024-02-23 11:14:02.118 mlaunch[3786:50544] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.TargetSummaryEditor for extension Xcode.Xcode3ProjectSupport.TargetSummaryEditor.WatchOS.Application of plug-in com.apple.dt.IDEWatchSupportUI
2024-02-23 11:14:02.118 mlaunch[3786:50544] Requested but did not find extension point with identifier Xcode.DebuggerFoundation.ViewDescriber for extension Xcode.DebuggerFoundation.watchOSSimulator.ViewDescriber of plug-in com.apple.dt.IDEWatchSupportUI
2024-02-23 11:14:02.118 mlaunch[3786:50544] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.TargetSummaryEditor for extension Xcode.Xcode3ProjectSupport.TargetSummaryEditor.WatchOS.Framework of plug-in com.apple.dt.IDEWatchSupportUI
2024-02-23 11:14:02.118 mlaunch[3786:50544] Requested but did not find extension point with identifier Xcode.Xcode3UI.Xcode3SupportedDestinations for extension IDEWatchSupportUI:IDEWatchSupportUI.plugindata/plug-in[1]/extension[20] of plug-in com.apple.dt.IDEWatchSupportUI
2024-02-23 11:14:02.118 mlaunch[3786:50544] Requested but did not find extension point with identifier Xcode.DebuggerFoundation.DataSourceConnection for extension Xcode.DebuggerFoundation.watchOS.DataSourceConnectionTargetHub of plug-in com.apple.dt.IDEWatchSupportUI
2024-02-23 11:14:02.118 mlaunch[3786:50544] Requested but did not find extension point with identifier Xcode.DebuggerFoundation.DataSourceConnection for extension Xcode.DebuggerFoundation.watchOSSimulator.DataSourceConnectionTargetHub of plug-in com.apple.dt.IDEWatchSupportUI
2024-02-23 11:14:02.118 mlaunch[3786:50544] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.TargetSummaryEditor for extension Xcode.Xcode3ProjectSupport.TargetSummaryEditor.WatchOS.ExtensionKitAppExtension of plug-in com.apple.dt.IDEWatchSupportUI
2024-02-23 11:14:02.118 mlaunch[3786:50544] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.TargetSummaryEditor for extension Xcode.Xcode3ProjectSupport.TargetSummaryEditor.WatchOS.AppExtension of plug-in com.apple.dt.IDEWatchSupportUI
2024-02-23 11:14:02.118 mlaunch[3786:50544] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.TargetSummaryEditor for extension Xcode.Xcode3ProjectSupport.TargetSummaryEditor.WatchOS.WatchApplication of plug-in com.apple.dt.IDEWatchSupportUI
2024-02-23 11:14:02.118 mlaunch[3786:50544] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.TargetSummaryEditor for extension Xcode.Xcode3ProjectSupport.TargetSummaryEditor.WatchOS.IntentsService-AppExtension of plug-in com.apple.dt.IDEWatchSupportUI
2024-02-23 11:14:02.119 mlaunch[3786:50544] Requested but did not find extension point with identifier Xcode.Xcode3UI.Xcode3SupportedDestinations for extension IDEOSXSupportUI:IDEOSXSupportUI.plugindata/plug-in[1]/extension[5] of plug-in com.apple.dt.IDE.IDEOSXSupportUI
2024-02-23 11:14:02.120 mlaunch[3786:50544] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.TargetSummaryEditor for extension Xcode.Xcode3ProjectSupport.TargetSummaryEditor.XROS.Framework of plug-in com.apple.dt.IDE.IDESupportUI-xrOS
2024-02-23 11:14:02.120 mlaunch[3786:50544] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.TargetSummaryEditor for extension Xcode.Xcode3ProjectSupport.TargetSummaryEditor.XROS.DynamicLibrary of plug-in com.apple.dt.IDE.IDESupportUI-xrOS
2024-02-23 11:14:02.120 mlaunch[3786:50544] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.TargetSummaryEditor for extension Xcode.Xcode3ProjectSupport.TargetSummaryEditor.XROS.ExtensionKitAppExtension of plug-in com.apple.dt.IDE.IDESupportUI-xrOS
2024-02-23 11:14:02.120 mlaunch[3786:50544] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.TargetSummaryEditor for extension Xcode.Xcode3ProjectSupport.TargetSummaryEditor.XROS.XPC of plug-in com.apple.dt.IDE.IDESupportUI-xrOS
2024-02-23 11:14:02.120 mlaunch[3786:50544] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.InfoEditorType for extension Xcode.Xcode3ProjectSupport.InfoEditorType.Reality.Application of plug-in com.apple.dt.IDE.IDESupportUI-xrOS
2024-02-23 11:14:02.120 mlaunch[3786:50544] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.TargetSummaryEditor for extension Xcode.Xcode3ProjectSupport.TargetSummaryEditor.XROS.Bundle of plug-in com.apple.dt.IDE.IDESupportUI-xrOS
2024-02-23 11:14:02.120 mlaunch[3786:50544] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.InfoEditorType for extension Xcode.Xcode3ProjectSupport.InfoEditorType.Reality.Framework of plug-in com.apple.dt.IDE.IDESupportUI-xrOS
2024-02-23 11:14:02.120 mlaunch[3786:50544] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.TargetSummaryEditor for extension Xcode.Xcode3ProjectSupport.TargetSummaryEditor.XROS.Application of plug-in com.apple.dt.IDE.IDESupportUI-xrOS
2024-02-23 11:14:02.120 mlaunch[3786:50544] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.TargetSummaryEditor for extension Xcode.Xcode3ProjectSupport.TargetSummaryEditor.XROS.Tool of plug-in com.apple.dt.IDE.IDESupportUI-xrOS
2024-02-23 11:14:02.120 mlaunch[3786:50544] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.InfoEditorType for extension Xcode.Xcode3ProjectSupport.InfoEditorType.Reality.Bundle of plug-in com.apple.dt.IDE.IDESupportUI-xrOS
2024-02-23 11:14:02.120 mlaunch[3786:50544] Requested but did not find extension point with identifier Xcode.Xcode3UI.Xcode3SupportedDestinations for extension IDESupportUI_xrOS:IDESupportUI_xrOS.plugindata/plug-in[1]/extension[13] of plug-in com.apple.dt.IDE.IDESupportUI-xrOS
2024-02-23 11:14:02.120 mlaunch[3786:50544] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.TargetSummaryEditor for extension Xcode.Xcode3ProjectSupport.TargetSummaryEditor.XROS.AppExtension of plug-in com.apple.dt.IDE.IDESupportUI-xrOS
2024-02-23 11:14:02.120 mlaunch[3786:50544] Requested but did not find extension point with identifier Xcode.DebuggerFoundation.DataSourceConnection for extension Xcode.DebuggerFoundation.tvOSSimulator.DataSourceConnectionTargetHub of plug-in com.apple.dt.IDEAppleTVSupportUI
2024-02-23 11:14:02.120 mlaunch[3786:50544] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.TargetSummaryEditor for extension Xcode.Xcode3ProjectSupport.TargetSummaryEditor.IDEAppleTVSupportUI.Application of plug-in com.apple.dt.IDEAppleTVSupportUI
2024-02-23 11:14:02.120 mlaunch[3786:50544] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.TargetSummaryEditor for extension Xcode.Xcode3ProjectSupport.TargetSummaryEditor.IDEAppleTVSupportUI.XPC of plug-in com.apple.dt.IDEAppleTVSupportUI
2024-02-23 11:14:02.120 mlaunch[3786:50544] Requested but did not find extension point with identifier Xcode.DebuggerFoundation.DeviceIconProvider for extension Xcode.DebuggerFoundation.DeviceIconProvider.AppleTV of plug-in com.apple.dt.IDEAppleTVSupportUI
2024-02-23 11:14:02.120 mlaunch[3786:50544] Requested but did not find extension point with identifier Xcode.DebuggerFoundation.ViewDescriber for extension Xcode.DebuggerFoundation.ATVSimulator.ViewDescriber of plug-in com.apple.dt.IDEAppleTVSupportUI
2024-02-23 11:14:02.121 mlaunch[3786:50544] Requested but did not find extension point with identifier Xcode.Xcode3UI.Xcode3SupportedDestinations for extension IDEAppleTVSupportUI:IDEAppleTVSupportUI.plugindata/plug-in[1]/extension[16] of plug-in com.apple.dt.IDEAppleTVSupportUI
2024-02-23 11:14:02.121 mlaunch[3786:50544] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.TargetSummaryEditor for extension Xcode.Xcode3ProjectSupport.TargetSummaryEditor.IDEAppleTVSupportUI.ExtensionKitAppExtension of plug-in com.apple.dt.IDEAppleTVSupportUI
2024-02-23 11:14:02.121 mlaunch[3786:50544] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.TargetSummaryEditor for extension Xcode.Xcode3ProjectSupport.TargetSummaryEditor.IDEAppleTVSupportUI.AppExtension of plug-in com.apple.dt.IDEAppleTVSupportUI
2024-02-23 11:14:02.121 mlaunch[3786:50544] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.TargetSummaryEditor for extension Xcode.Xcode3ProjectSupport.TargetSummaryEditor.IDEAppleTVSupportUIFramework of plug-in com.apple.dt.IDEAppleTVSupportUI
2024-02-23 11:14:02.121 mlaunch[3786:50544] Requested but did not find extension point with identifier Xcode.DebuggerFoundation.DataSourceConnection for extension Xcode.DebuggerFoundation.tvOS.DataSourceConnectionTargetHub of plug-in com.apple.dt.IDEAppleTVSupportUI
2024-02-23 11:14:02.121 mlaunch[3786:50544] Requested but did not find extension point with identifier Xcode.DebuggerFoundation.ViewDescriber for extension Xcode.DebuggerFoundation.ATV.ViewDescriber of plug-in com.apple.dt.IDEAppleTVSupportUI
2024-02-23 11:14:02.121 mlaunch[3786:50544] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.InfoEditorType for extension Xcode.Xcode3ProjectSupport.InfoEditorType.appletvos.Bundle of plug-in com.apple.dt.IDEAppleTVSupportUI
2024-02-23 11:14:02.121 mlaunch[3786:50544] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.InfoEditorSlice for extension Xcode.Xcode3ProjectSupport.InfoEditorSlice.appletvos.BundleTargetInfo of plug-in com.apple.dt.IDEAppleTVSupportUI
2024-02-23 11:14:02.239 mlaunch[3786:50605] .NET ThreadPool Worker DVTAssertions: Warning in DVTFrameworks/DVTFoundation/DeveloperStructure/DVTExtendedPlatformInfo.m:90
Details: DVTExtendedPlatformInfo: Synthesized watchos Extended Platform Info because no plugin existed to provide it or that plugin was not loaded
Object: <DVTExtendedPlatformInfo>
Method: +extendedPlatformInfoForPlatformIdentifier:error:
Thread: <NSThread: 0x60000295f1c0>{number = 5, name = (null)}
Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide.
2024-02-23 11:14:02.239 mlaunch[3786:50605] .NET ThreadPool Worker DVTAssertions: Warning in DVTFrameworks/DVTFoundation/DeveloperStructure/DVTExtendedPlatformInfo.m:90
Details: DVTExtendedPlatformInfo: Synthesized iphonesimulator Extended Platform Info because no plugin existed to provide it or that plugin was not loaded
Object: <DVTExtendedPlatformInfo>
Method: +extendedPlatformInfoForPlatformIdentifier:error:
Thread: <NSThread: 0x60000295f1c0>{number = 5, name = (null)}
Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide.
2024-02-23 11:14:02.239 mlaunch[3786:50605] .NET ThreadPool Worker DVTAssertions: Warning in DVTFrameworks/DVTFoundation/DeveloperStructure/DVTExtendedPlatformInfo.m:90
Details: DVTExtendedPlatformInfo: Synthesized xrsimulator Extended Platform Info because no plugin existed to provide it or that plugin was not loaded
Object: <DVTExtendedPlatformInfo>
Method: +extendedPlatformInfoForPlatformIdentifier:error:
Thread: <NSThread: 0x60000295f1c0>{number = 5, name = (null)}
Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide.
2024-02-23 11:14:02.240 mlaunch[3786:50605] .NET ThreadPool Worker DVTAssertions: Warning in DVTFrameworks/DVTFoundation/DeveloperStructure/DVTExtendedPlatformInfo.m:90
Details: DVTExtendedPlatformInfo: Synthesized watchsimulator Extended Platform Info because no plugin existed to provide it or that plugin was not loaded
Object: <DVTExtendedPlatformInfo>
Method: +extendedPlatformInfoForPlatformIdentifier:error:
Thread: <NSThread: 0x60000295f1c0>{number = 5, name = (null)}
Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide.
2024-02-23 11:14:02.240 mlaunch[3786:50605] .NET ThreadPool Worker DVTAssertions: Warning in DVTFrameworks/DVTFoundation/DeveloperStructure/DVTExtendedPlatformInfo.m:90
Details: DVTExtendedPlatformInfo: Synthesized xros Extended Platform Info because no plugin existed to provide it or that plugin was not loaded
Object: <DVTExtendedPlatformInfo>
Method: +extendedPlatformInfoForPlatformIdentifier:error:
Thread: <NSThread: 0x60000295f1c0>{number = 5, name = (null)}
Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide.
2024-02-23 11:14:02.240 mlaunch[3786:50605] .NET ThreadPool Worker DVTAssertions: Warning in DVTFrameworks/DVTFoundation/DeveloperStructure/DVTExtendedPlatformInfo.m:90
Details: DVTExtendedPlatformInfo: Synthesized iphoneos Extended Platform Info because no plugin existed to provide it or that plugin was not loaded
Object: <DVTExtendedPlatformInfo>
Method: +extendedPlatformInfoForPlatformIdentifier:error:
Thread: <NSThread: 0x60000295f1c0>{number = 5, name = (null)}
Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide.
warning MT1043: Failed to launch the application using the instruments service. Will try launching the app using gdb service.
Launching '{App bundle id}' on the device 'dev’s iPhone'
Could not find the application '{App bundle id}' on the device '{Device Name}'.
When I try to install app in debug mode that install whenever I try to install my app in release mode application output give me this error.
I try on iPhone 11 Pro Max ,iOS Version :-17.3.1
public void PurchaseProduct(string appStoreProductId)
{
Console.WriteLine("PurchaseProduct {0}", appStoreProductId);
SKPayment payment = SKPayment.PaymentWithProduct(appStoreProductId);
SKPaymentQueue.DefaultQueue.AddPayment(payment);
}
public void FailedTransaction(SKPaymentTransaction transaction)
{
//SKErrorPaymentCancelled == 2
string errorDescription = transaction.Error.Code == 2 ? "User CANCELLED FailedTransaction" : "FailedTransaction";
Console.WriteLine("{0} Code={1} {2}", errorDescription, transaction.Error.Code, transaction.Error.LocalizedDescription);
FinishTransaction(transaction, false);
}
public void CompleteTransaction(SKPaymentTransaction transaction)
{
Console.WriteLine("CompleteTransaction {0}", transaction.TransactionIdentifier);
string productId = transaction.Payment.ProductIdentifier;
// Register the purchase, so it is remembered for next time
CompleteTransaction(productId);
FinishTransaction(transaction, true);
}
This call my code for the purchase the product
iap.PurchaseProduct(productId);
Using this code I call the purchase method
and my app is already I registered in App Store and also I registered my product in Apple Store
I complete the all step
but thay also come in the failedTransaction method in Xamarin iOS