Move to MAUI 0.6.0

1 Answer 78 Views
General Discussions
Daniel
Top achievements
Rank 1
Silver
Bronze
Daniel asked on 21 Mar 2022, 07:03 AM

Hi,

I'm using UI for MAUI 0.5.0, which requires preview13.

When to  updated my development environment to preview14,

which require Telerik UI for MAUI 0.6.0 .

Thanks,

Daniel
Top achievements
Rank 1
Silver
Bronze
commented on 21 Mar 2022, 12:34 PM

I didn't make ant updates , wait to your updates.
Daniel
Top achievements
Rank 1
Silver
Bronze
commented on 21 Mar 2022, 12:35 PM

The link for six not working: Release History for Telerik UI for MAUI.
Lance | Manager Technical Support
Telerik team
commented on 21 Mar 2022, 12:42 PM | edited

There is no 0.6.0 yet, please read my answer more carefully.
Lance | Manager Technical Support
Telerik team
commented on 23 Mar 2022, 02:07 PM

Telerik UI for MAUI 0.6.0 is now available for preview14..

Use NuGet server or download from your account => https://www.telerik.com/account/downloads/product-download?product=MAUI

1 Answer, 1 is accepted

Sort by
0
Lance | Manager Technical Support
Telerik team
answered on 21 Mar 2022, 12:21 PM

Hello,

Yes, if you have updated your development environment to preview14, then you can no longer use Telerik UI for MAUI 0.5. You must wait until we release 0.6.0 before you can use Telerik UI for MAUI again.

You can check when 0.6.0 is available here Release History for Telerik UI for MAUI.

We expect to release it this week, but I will come back to this thread and add a comment to let you know when it is available.

Known Breaking Changes

I want to take a step back and try to get a grasp on what just happened. In this forum thread, I provided you with a very clear warning not to update your environment until 0.6.0 is available:

and you replied saying that you understood this and have not upgraded yet.

Regards,
Lance | Manager Technical Support
Progress Telerik

Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.

Daniel
Top achievements
Rank 1
Silver
Bronze
commented on 27 Mar 2022, 11:08 AM

Hi,

1. I uninstall vs 20202 preview 17.2  Preview 1.

2.Install Version 17.2.0 Preview 2.1

3. Open New Project of MAUI.

4. Copy all files from old project to new project and update name spaces.

5. Replace to new telerikMauiControls:RadEntry.

6.Project complied.

7.But pages stop working... pages with charts and more controls stop working...

What do I miss ?

 

Lance | Manager Technical Support
Telerik team
commented on 28 Mar 2022, 02:44 PM

Hi Daniel, please stop spamming the forums. It is clear that you copy/pasted this post's exact text in multiple locations. There is no need to copy/paste the same message in several locations, we see your initial message and will act accordingly

Okay, with that said, let's move forward.

What you're experiencing is a normal part of the process when building apps in a preview stage. You will need to comment out everything until it works again, then slowly re-add all the different parts until it breaks again.

This takes a lot of patience and effort, do it slowly and methodically until you have a definitive offender causing the error.

Helpful Tips

1) If you're using a new project, make sure you have properly followed the Getting Started steps, particularly the "UseTelerik()" method that is required in Maui application class.

2) There is a significant bug in MAUI preview14's XAML that doesn't automatically map content property. So you may need to write out these properties. This bug has bitten me as well.

As an example:

Here is something that is expected to work, but the Microsoft XAML parser doesn't pick up the `[Content]` attribute on BindableProperties.

<telerikPrimitives:RadPath x:Name="simpleArcPath" ...>
    <telerikCommon:RadPathGeometry>
        <telerikCommon:RadPathFigure ...>
            <telerikCommon:RadArcSegment ... />
        </telerikCommon:RadPathFigure>
    </telerikCommon:RadPathGeometry>
 </telerikPrimitives:RadPath>

Here is how to workaround it:

 <!-- AFTER - Neccessary to workaround preview14 XAML processor bug -->
 <telerikPrimitives:RadPath x:Name="simpleArcPath" ...>
    <telerikPrimitives:RadPath.Geometry>
        <telerikCommon:RadPathGeometry>
            <telerikCommon:RadPathFigure ...>
                <telerikCommon:RadArcSegment .../>
            </telerikCommon:RadPathFigure>
        </telerikCommon:RadPathGeometry>
    </telerikPrimitives:RadPath.Geometry>
 </telerikPrimitives:RadPath>

Tags
General Discussions
Asked by
Daniel
Top achievements
Rank 1
Silver
Bronze
Answers by
Lance | Manager Technical Support
Telerik team
Share this question
or