在类型“MTAdView”中找不到 属性 'PersonalizedAds'
The property 'PersonalizedAds' was not found in type 'MTAdView
我已经为我的 Xamarin.Forms 项目安装了 MarcTron.Admob 包,版本 1.6.9。
根据其文档,有一个名为 PersonalizedAds
的 属性。
- 我收到错误:
The property 'PersonalizedAds' was not found in type 'MTAdView'
。为什么 属性 无法识别?
- 使用
CrossMTAdmob.Current.UserPersonalizedAds = true;
它会影响哪些 MTAdview 项目?内容页面中列出的所有 MTAdview 项目?
I get the error: The property 'PersonalizedAds' was not found in type 'MTAdView'. Why is the property not recognized?
个性化 属性 已从 MTAdView 版本 1.6.2 中删除。如果要使用,请使用Version 1.6.1及之前的版本。
Using CrossMTAdmob.Current.UserPersonalizedAds = true; which MTAdview items would it affect? All the MTAdview items that are listed in a Content Page?
UserPersonalizedAds
是全局 属性。当您将 UserPersonalizedAds
设置为 true 时,您所有的 Admob 横幅都将显示个性化广告并具有相同的 ID。
我已经为我的 Xamarin.Forms 项目安装了 MarcTron.Admob 包,版本 1.6.9。
根据其文档,有一个名为 PersonalizedAds
的 属性。
- 我收到错误:
The property 'PersonalizedAds' was not found in type 'MTAdView'
。为什么 属性 无法识别? - 使用
CrossMTAdmob.Current.UserPersonalizedAds = true;
它会影响哪些 MTAdview 项目?内容页面中列出的所有 MTAdview 项目?
I get the error: The property 'PersonalizedAds' was not found in type 'MTAdView'. Why is the property not recognized?
个性化 属性 已从 MTAdView 版本 1.6.2 中删除。如果要使用,请使用Version 1.6.1及之前的版本。
Using CrossMTAdmob.Current.UserPersonalizedAds = true; which MTAdview items would it affect? All the MTAdview items that are listed in a Content Page?
UserPersonalizedAds
是全局 属性。当您将 UserPersonalizedAds
设置为 true 时,您所有的 Admob 横幅都将显示个性化广告并具有相同的 ID。