This repository was archived by the owner on May 1, 2024. It is now read-only.
This repository was archived by the owner on May 1, 2024. It is now read-only.
Lifecycle events does not work in release mode for Android. #1295
Open
Description
Hello, my sample as below. It is working in debug mode but is not working in release mode for Android. Thank you in advance.
<ControlTemplate x:Key="CommonScrollablePageControlTemplate">
<pcw:PancakeView
HorizontalOptions="FillAndExpand"
IsClippedToBounds="True"
VerticalOptions="FillAndExpand">
<pcw:PancakeView.Effects>
<xct:LifecycleEffect Loaded="BodyLayout_Loaded" />
</pcw:PancakeView.Effects>
</pcw:PancakeView>
</ControlTemplate>
public void BodyLayout_Loaded(object sender, System.EventArgs e)
{
....
}