GooglePlayServicesUtil

GooglePlayServicesUtil

Google Maps documentation说,必须将Google Play服务的归因文本作为“法律声明”的一部分。可以通过调用GooglePlayServicesUtil.getOpenSourceSoftwareLicenseInfo获得归因文本。但是GooglePlayServicesUtil直到Android 2.2才可用。我的应用程序是为2.0设计的,那么这是什么文本,我从哪里得到呢?

最佳答案

这是一个

Log.d("DEBUG", GooglePlayServicesUtil.getOpenSourceSoftwareLicenseInfo(this));

透露(2013年2月-同时可能已更改!请参阅第一个评论):



然后是Apache License Version 2.0

编辑2016年1月3日:现在已弃用GooglePlayServicesUtil.getOpenSourceSoftwareLicenseInfo(Context)

请改用GoogleApiAvailability.getInstance().getOpenSourceSoftwareLicenseInfo(Context);

编辑'17年10月31日
正如donfuxx所说,它不再需要在应用程序中显示。 Google doc

10-06 12:44