/r/Xamarin

Photograph via snooOG

Now open for business!


Talk about Xamarin and its awesome line up of solutions for mobile development!


/r/xamarindevelopers

/r/xamarinandroid

/r/xamarinios

/r/xamarinforms

/r/Xamarin

2,796 Subscribers

1

How to install latest Xamarin iOS SDK (XCode 15/SDK 17)

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.

3 Comments
2024/10/09
20:12 UTC

2

Updates for TinyInsights, what is new for NET MAUI developers that want to use Application Insights!

0 Comments
2024/09/23
09:02 UTC

2

Facing Freeze Bug in Xamarin.Forms iOS SDK 14.0 After iOS 18 Update

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?

5 Comments
2024/09/18
11:11 UTC

1

Is there any way to totally hide TabViewItem element in Xamarin.Forms?

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>

https://preview.redd.it/uoq8w9gfkfhd1.png?width=395&format=png&auto=webp&s=87b559978ccf363abf006c4b9882325c5f524427

https://preview.redd.it/mcyqrsvfkfhd1.png?width=395&format=png&auto=webp&s=47941892a78db2f93e7d1fcb0eb65c398f990ba0

1 Comment
2024/08/08
12:04 UTC

1

How to see screen mirroring popup in my Xamarin iOS App ?

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.

0 Comments
2024/07/25
09:15 UTC

1

How to see screen mirroring device list iPhone?

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.

1 Comment
2024/07/25
09:14 UTC

1

Can I build iOS app on windows and deploy IPA via mac to store?

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

2 Comments
2024/07/01
19:46 UTC

2

AppCenter is retiring! This is how to use Application Insights for your .NET MAUI apps!

0 Comments
2024/06/17
08:49 UTC

4

How to play audio in Xamarin

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

0 Comments
2024/06/03
14:46 UTC

1

Send Email issue in Xamarin

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.

3 Comments
2024/05/22
08:39 UTC

1

New stable release Plugin.Maui.AppRating

Hi everyone, I just wanted to let you know that I have released a new stable version of the Plugin.Maui.AppRating package.

  • Added .Net8 support to all platforms.
  • Updated libraries.
  • Added FakeReviewManager to Android.
  • Fixed Windows implementation.

Check it out!

https://github.com/FabriBertani/Plugin.Maui.AppRating

0 Comments
2024/05/20
16:54 UTC

1

I want to improve the performance of my app.

1 Comment
2024/04/18
04:03 UTC

2

How to bypass ssl pinning on a Xamarin iOS app?

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?

4 Comments
2024/04/04
21:49 UTC

1

How to login Microsoft using Auth0?

1 Comment
2024/04/01
09:15 UTC

1

How to change item layout appearance on run time?

0 Comments
2024/04/01
08:47 UTC

2

New stable release Plugin.Maui.ScreenSecurity

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!

https://github.com/FabriBertani/Plugin.Maui.ScreenSecurity

0 Comments
2024/03/19
00:14 UTC

1

How do I update an image?

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

https://preview.redd.it/6q4gzdwindoc1.png?width=894&format=png&auto=webp&s=2e115b0fbf1871944173d915afae13efdb3242d8

https://preview.redd.it/e29xx46ondoc1.png?width=614&format=png&auto=webp&s=c9599d915e5755b82b2c1afd617e0775ca720cfe

0 Comments
2024/03/14
22:43 UTC

3

.Net MAUI is not XAML

0 Comments
2024/03/13
16:17 UTC

1

Building an activity tracker app with .NET MAUI and Blazor - Part 2 - Saving data and creating tests

0 Comments
2024/03/11
12:54 UTC

1

How to redirect new page ?

0 Comments
2024/03/11
10:44 UTC

1

Building an activity tracker app with .NET MAUI and Blazor - Part 1 - Getting started

0 Comments
2024/03/06
10:13 UTC

1

UsbSerialForAndroid what to do for multiple ports/interfaces ?

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 ?

0 Comments
2024/03/06
07:01 UTC

4

Beautiful Property App In .Net MAUI

0 Comments
2024/02/23
12:06 UTC

2

Can i make apple watch app in .net maui

0 Comments
2024/02/23
09:25 UTC

0

Xamarin iOS App not install in iOS physical device in Release Mode.

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

1 Comment
2024/02/23
05:47 UTC

1

In App Purchase Transaction Failed ?

 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

0 Comments
2024/02/22
06:45 UTC

1

Show a popup Please Start Application

0 Comments
2024/02/21
08:42 UTC

2

How to make In App Purchase in Xamarin iOS

0 Comments
2024/02/20
04:37 UTC

Back To Top