android - Upgrading to API 22 breaks test suite -
i attempting upgrade existing project compile , target api 22. changed following lines in build.gradle:
android { compilesdkversion 22 ... defaultconfig { ... targetsdkversion 22 } ... dependencies { ... compile 'com.android.support:appcompat-v7:22.2.0' compile 'com.android.support:support-v4:22.2.0' ... } }
note these only changes in entire project. suddenly, many of tests fail. of failing tests use robotium , call solo.clickonactionbaritem()
. however, button on action bar never seems clicked. when watch test running, not see expected behavior button click.
what reasons failure of solo.clickonactionbaritem()
not click action bar item? more importantly, how can figure out problem when appears in third-party library using?
Comments
Post a Comment