Last active
September 3, 2016 13:22
-
-
Save Zhuinden/4419920a3df64fb8d766a11d6655e298 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Top-level build file where you can add configuration options common to all sub-projects/modules. | |
buildscript { | |
repositories { | |
jcenter() | |
mavenCentral() | |
maven {url "https://clojars.org/repo/"} | |
maven { url "https://jitpack.io" } | |
} | |
dependencies { | |
classpath 'com.android.tools.build:gradle:2.1.2' | |
//classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8' | |
//classpath 'me.tatarka:gradle-retrolambda:3.2.5' | |
classpath "io.realm:realm-gradle-plugin:1.2.0" // <-- added this line | |
} | |
} | |
allprojects { | |
repositories { | |
jcenter() | |
mavenCentral() | |
maven { url "https://clojars.org/repo/" } | |
maven { url "https://jitpack.io" } | |
} | |
} | |
task clean(type: Delete) { | |
delete rootProject.buildDir | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment