Bad notification posted - Couldn't expand RemoteViews for: StatusBarNotification
android remote service exception 안드로이드 notification에서 remote view 사용 시 Bad notification posted - Couldn't expand RemoteViews for: StatusBarNotification 에러 해결방법. 잘 되던 푸시메세지가 notify시 remote service exception이 발생하는 기기발견. 앱 SDK 버전 22 / 안드로이드 버전 5.0에서 현상 발견. 대표적으로 remoteViews 사용 시 layout에 remoteview에서 사용 할 수 없는 view를 사용했을 때 발생하는 에러인데 해당안되는 사항이니 패스. 참조 - https://developer.android.com/guide/topics/appw..
Android
2017. 4. 6. 16:50
Android Espresso view class Matcher
Android Ui test with espresso view class matcher ( custom view ...) 안드로이드 UI 테스트 espresso에서 matcher에 view class로 비교하는방법 (custom view 등) UI테스팅 코드를 작성하면서 보통 onView(withId(R.id.title)) 이런식으로 id를 비교한다. 그 외에도 add view 해준 view 객체도 class로 비교 할 수 있다. onView(withClassName(containsString(CustomView.class.getSimpleName())));
Android
2017. 3. 3. 15:10