forked from playgameservices/android-basic-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
28 lines (22 loc) · 678 Bytes
/
Copy pathbuild.gradle
File metadata and controls
28 lines (22 loc) · 678 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// this is the parent build configuration for all the sample projects.
// for more information on gradle build files when used in a multi-project build, see
// http://gradle.org/docs/current/userguide/multi_project_builds.html
buildscript {
dependencies {
classpath 'com.android.tools.build:gradle:1.1.0'
}
}
// allprojects apply to every project
allprojects {
repositories {
mavenCentral()
}
ext {
android_compile_version = 20
android_version = '20'
android_min_sdk_version = 9
appcompat_library_version = '20.0.+'
support_library_version = '20.0.+'
gms_library_version = '6.5+'
}
}