forked from DrKLO/Telegram
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.gradle
More file actions
33 lines (28 loc) · 750 Bytes
/
build.gradle
File metadata and controls
33 lines (28 loc) · 750 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
27
28
29
30
31
32
33
// Top-level build file where you can add configuration options common to all sub-projects/modulesbuildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.5.4'
}
}
task wrapper(type: Wrapper) {
gradleVersion = '1.6'
}
apply plugin: 'android'
repositories {
mavenCentral()
maven {
url "https://repository-partnerdemo.forge.cloudbees.com/release/"
}
}
dependencies {
compile 'com.google.code.gson:gson:2.2.4'
compile 'com.android.support:support-v4:13.0.0'
compile 'com.google.android.gms:play-services:3.1.36'
compile 'com.google.android.gcm:gcm-client:3'
}
android {
compileSdkVersion 17
buildToolsVersion "17.0.0"
}