您好我们正在开发Xamarin应用程序,我们希望监控有多少人从我们的推荐ID安装应用程序。
我找到这份文件https://developers.google.com/analytics/devguides/collection/android/v4/ 它的位置是“将您刚刚下载的google-services.json文件复制到Android Studio项目的app /或mobile /目录中。”
我有visual studio(2013)项目当然缺少这些文件夹。问题是,我在visual studio项目中添加了google-services.json文件?
提前致谢
答案 0 :(得分:16)
我不知道什么时候有必要,但正如我发布的那样(2017年5月),这是必要的。我把它放在我的Android .csproj
文件所在的目录中。然后我将其添加到项目中,并确保Xamarin.GooglePlayServices.Base.targets
位于.csproj
。我读到重建将足以使正确的构建操作出现,但构建和重新启动XS对我来说就是这样。我.csproj
的最终结果是:
<ItemGroup>
<GoogleServicesJson Include="google-services.json" />
</ItemGroup>
答案 1 :(得分:0)
答案 2 :(得分:0)
为了可以将Build Action设置为GoogleServicesJson,您应该首先通过Nuget安装Xamarin.GooglePlayServices.Base。然后关闭VS并重新打开。
答案 3 :(得分:-3)
我不相信Xamarin项目的文件是necessary。