SDL: fixed Google Play Game Services linking

This commit is contained in:
Sergii Pylypenko
2017-09-27 22:09:57 +03:00
parent bd36a07c7b
commit 209a16fd9f
8 changed files with 32 additions and 202 deletions

View File

@@ -1,19 +1,23 @@
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
compileSdkVersion 26
buildToolsVersion "26.0.0"
defaultConfig {
applicationId "net.olofson.ballfield"
minSdkVersion 9
targetSdkVersion 25
minSdkVersion 14 // ==GOOGLEPLAYGAMESERVICES==
targetSdkVersion 26
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), '../proguard-local.cfg'
}
}
dependencies { compile 'com.google.android.gms:play-services-games:11.4.0' } // ==GOOGLEPLAYGAMESERVICES==
dependencies { compile 'com.google.android.gms:play-services-drive:11.4.0' } // ==GOOGLEPLAYGAMESERVICES==
}