Jamie Dulaney
Jamie Dulaney
switch it to proguardFiles fileTree(dir: "cproguardfiles", include: ["*.pro"]).asList().toArray()
shouldn't these changes be in a new file? proguard-butterknife-8.pro
I ran into the same issue. I solved it by doing the following: ``` testCompile("com.squareup.assertj:assertj-android:1.1.1") { exclude group: "com.android.support", module: "support-annotations" exclude group: "com.android.support", module: "support-v4" } testCompile("com.squareup.assertj:assertj-android-support-v4:1.1.1") { exclude...