Update gradle to use LeakCanary snapshot so that leak detection works on marshmallow

This commit is contained in:
Anthony Restaino 2016-01-10 13:55:19 -05:00
parent 95dddf1992
commit 8d390e1d6d
2 changed files with 5 additions and 2 deletions

View File

@ -86,8 +86,8 @@ dependencies {
compile(project(':libnetcipher'))
// memory leak analysis
debugCompile 'com.squareup.leakcanary:leakcanary-android:1.3.1'
releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.3.1'
debugCompile 'com.squareup.leakcanary:leakcanary-android:1.4-SNAPSHOT'
releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.4-SNAPSHOT'
provided 'javax.annotation:jsr250-api:1.0'

View File

@ -12,5 +12,8 @@ buildscript {
allprojects {
repositories {
jcenter()
maven {
url 'https://oss.sonatype.org/content/repositories/snapshots/'
}
}
}