square / assertj-android

A set of AssertJ helpers geared toward testing Android.
https://square.github.io/assertj-android/
Apache License 2.0
1.58k stars 156 forks source link

Upgrade to newest build tools and android plugin. Use provided scope. #101

Closed pboos closed 10 years ago

pboos commented 10 years ago

This could as well solve VerifyErrors when already using a different version of support-v4. But not 100% sure since tests did not show that problem when I used the .aar file directly.

If still experiencing the VerifyErrors then one can use the following workaround:

androidTestCompile ('com.squareup:fest-android:1.0.+') {
    exclude group: 'com.android.support', module: 'support-v4'
}
JakeWharton commented 10 years ago

LGTM otherwise, just one change.

pboos commented 10 years ago

Sorry for the slacking :). Hope this looks better now.

JakeWharton commented 10 years ago

Thanks!