Я получил электронное письмо о том, что 9 декабря все методы, использующие Google Drive API , будут устаревшими.
Чтение документации по сохраненным играм (https://developers.google.com/games/services/android/savedgames), они используют Google Drive API .
Будет ли Google Play Games также устареть? Как я могу решить?
Спасибо.
Мой Build.gradle
android {
compileSdkVersion 26
defaultConfig {
applicationId "xxxxxx"
minSdkVersion 15
targetSdkVersion 26
versionCode 29
versionName "29"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'com.google.android.gms:play-services-auth:16.0.1'
implementation 'com.google.android.gms:play-services-games:16.0.0'
implementation 'com.google.android.gms:play-services-ads:17.1.2'
implementation 'com.android.billingclient:billing:1.1'
}