在 ios 应用中使用 googleapis
Use googleapis in ios app
我正在实施一个 iOS 应用程序。我想使用 googleapis 获取用户当前位置 location.I 我没有使用 CLLocation,因为如果用户在授权警报中选择“不允许”选项,那么我将无法获取用户当前位置,这在我的位置是强制性的应用程序。我想知道苹果是否会拒绝我的应用程序,因为我正在使用 googleapis。
如果您使用 google apis,Apple 不会拒绝您的应用进入应用商店。
如果你想使用 google apis 获取用户当前位置,
google api 本身需要请求用户许可才能使用位置服务。
看到这个 link https://developers.google.com/places/ios-api/current-place
了解详情。
未经用户许可,无法使用 google apis 获取用户当前位置。
请查看 App Store 审核指南https://developer.apple.com/app-store/review/guidelines
在将应用提交到应用商店之前。
在隐私部分的数据使用和共享小节中,他们明确指出
"Apps cannot use or transmit someone’s personal data without first obtaining their permission and providing access to information about how and where the data will be used."
我正在实施一个 iOS 应用程序。我想使用 googleapis 获取用户当前位置 location.I 我没有使用 CLLocation,因为如果用户在授权警报中选择“不允许”选项,那么我将无法获取用户当前位置,这在我的位置是强制性的应用程序。我想知道苹果是否会拒绝我的应用程序,因为我正在使用 googleapis。
如果您使用 google apis,Apple 不会拒绝您的应用进入应用商店。 如果你想使用 google apis 获取用户当前位置, google api 本身需要请求用户许可才能使用位置服务。 看到这个 link https://developers.google.com/places/ios-api/current-place 了解详情。
未经用户许可,无法使用 google apis 获取用户当前位置。
请查看 App Store 审核指南https://developer.apple.com/app-store/review/guidelines 在将应用提交到应用商店之前。
在隐私部分的数据使用和共享小节中,他们明确指出
"Apps cannot use or transmit someone’s personal data without first obtaining their permission and providing access to information about how and where the data will be used."