forked from realm/realm-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
24 lines (22 loc) · 707 Bytes
/
build.gradle
File metadata and controls
24 lines (22 loc) · 707 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
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.2.3'
classpath 'de.undercouch:gradle-download-task:1.0'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.4'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.2'
classpath 'com.jakewharton.sdkmanager:gradle-plugin:0.12.0'
classpath 'com.novoda:gradle-android-command-plugin:1.3.0'
classpath 'com.github.skhatri:gradle-s3-plugin:1.0.2'
}
}
allprojects {
apply plugin: 'android-sdk-manager'
group = 'io.realm'
version = new File("${rootDir}/version.txt").text.trim();
repositories {
jcenter()
}
}