“ com.google.android.gms.drive.Drive”已弃用

时间:2019-06-25 15:33:51

标签: android google-play-services

我正在使用“已保存的游戏”示例应用程序的一部分,以保存解锁的关卡或购买的道具。如果用户已将这些文件保存在Google云端硬盘中,则可以在重新安装该应用程序或将其他设备与其Google帐户一起使用后恢复这些文件。

更新为'com.google.android.gms:play-services-games:18.0.0'后,我已“弃用”

.requestScopes(Drive.SCOPE_APPFOLDER)

我在https://developers.google.com/drive/android/deprecation中读到

  

Drive Android API自2018年12月6日起弃用,并将于2019年12月6日被拒绝。

我的问题是:

  1. 将禁用“不推荐使用” .requestScopes(Drive.SCOPE_APPFOLDER)吗?

  2. 如果将其禁用,为什么要在https://developers.google.com/games/services/android/savedgames中的Android Games中保存游戏支持 使用提示 .requestScopes(Drive.SCOPE_APPFOLDER) 在示例应用程序CollectAllTheStars2 https://github.com/playgameservices/android-basic-samples/blob/master/CollectAllTheStars2/src/main/java/com/google/example/games/catt2/MainActivity.java中?

  3. 如果将其禁用,那么别人如何保留“已保存的游戏”功能?

1 个答案:

答案 0 :(得分:0)

为了保留“保存的游戏”功能,我已将其替换为Firebase Firestore数据库。有人可以在Firebase Firestore documentation中学习如何读写数据。