Gradle import causes closeable error
I am trying to bring the library in on the latest Android Studio with Gradle 0.9.+ but I suffer from a project refresh failed cause by
Cause: com.google.common.io.Closeables.closeQuietly(Ljava/io/Closeable;)V
my build script is as easy as it comes
buildscript {
repositories {
mavenCentral()
maven {
url 'https://oss.sonatype.org/content/repositories/snapshots/'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:0.9.+'
classpath 'com.jakewharton.paraphrase:paraphrase:1.0.0-SNAPSHOT'
}
}
allprojects {
repositories {
mavenCentral()
}
}
I have the same issue here.
Confirming the issue. Why not to use APT instead of plugin? Thus it can be used more widely. Cause of grabbing resources?
Yes On Apr 9, 2014 6:13 PM, "naixx" [email protected] wrote:
Confirming the issue. Why not to use APT instead of plugin? Thus it can be used more widely. Cause of grabbing resources?
Reply to this email directly or view it on GitHubhttps://github.com/JakeWharton/paraphrase/issues/8#issuecomment-40033975 .
Any updates or ETA for this? I would really love to include in my next project.
@JakeWharton any hope for a fix to appear?