突然,我的应用程序将这些错误放在最近更新为64位支持的NuGet包中。
在使用
Refractored.Xam.Settings.Settings:GetValueOrDefault<bool> (string,bool)
运行时尝试JIT编译方法--aot-only
。有关详细信息,请参阅http://docs.xamarin.com/ios/about/limitations。
它阻碍了我。
这里叫它:
public static bool RememberMeSwitch
{
get { return AppSettings.GetValueOrDefault(CacheKeys.RememberMeSwitch, false); }
set { AppSettings.AddOrUpdateValue(CacheKeys.RememberMeSwitch, value); }
}