-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
43 lines (35 loc) · 1.17 KB
/
build.gradle
File metadata and controls
43 lines (35 loc) · 1.17 KB
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
34
35
36
37
38
39
40
41
42
43
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
classpath 'com.android.tools.build:gradle:1.2.0-beta4'
classpath 'com.jakewharton.hugo:hugo-plugin:1.2.1'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.4'
classpath 'com.github.ben-manes:gradle-versions-plugin:0.8'
classpath 'com.github.triplet.gradle:play-publisher:1.0.4'
// The Fabric Gradle plugin uses an open ended version to react
// quickly to Android tooling updates
classpath 'io.fabric.tools:gradle:1.+'
}
}
apply plugin: 'com.github.ben-manes.versions'
allprojects {
repositories {
jcenter()
maven { url 'https://maven.fabric.io/public' }
}
}
ext {
isTravis = "true".equals(System.getenv("TRAVIS"))
preDexEnabled = "true".equals(System.getProperty("pre-dex", "true"))
versionMajor = 0
versionMinor = 1
versionPatch = 8
versionBuild = 0
compileSdkVersion = 22
buildToolsVersion = "22.0.1"
targetSdkVersion = 22
}