Last active
August 27, 2017 10:38
-
-
Save ruwanka/b8a3a034c4ca6dcb764b059d89d704c3 to your computer and use it in GitHub Desktop.
Realm db dependencies and stetho-realm repository
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() | |
} | |
dependencies { | |
classpath 'com.android.tools.build:gradle:2.3.3' | |
classpath 'io.realm:realm-gradle-plugin:3.5.0' | |
} | |
} | |
allprojects { | |
repositories { | |
jcenter() | |
maven { | |
url 'https://github.com/uPhyca/stetho-realm/raw/master/maven-repo' | |
} | |
} | |
} | |
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