목록안드로이드(Android) (70)
Simple&Natural
cannot access class 'android.support.v4.view.pageradapter' 오류 해결 방법 UltraViewPager라는 외부 라이브러리를 사용하던 도중 다음과 같은 호환성 이슈를 마주하게 되었다. androidx의 PagerAdapter를 구현한 Adapter를 Support.v4의 PagerAdapter를 사용하는 UltraViewPager에 넣어주려고 하였으나 호환이 되지 않는다. 공식문서에 무언가 힌트가 있는지 찾아보자 android.enableJetifier=true를 이용해 기존 타사 라이브러리를 자동으로 이전할 수 있다고 한다. 그럼 내 프로젝트의 gradle.properties를 살펴보자. 응? 해당 flag가 없다. 아래와 같이 한 줄을 추가하고 다시 syn..
예전에도 rx사용시 제대로 try-catch 가 작동하지 않았던 이슈가 있었는데 Interceptor에서는 IOException이 아니면 스레드 외부로 throw를 하지 않는 것이 원인이었다. https://stackoverflow.com/questions/58697459/handle-exceptions-thrown-by-a-custom-okhttp-interceptor-in-kotlin-coroutines Handle exceptions thrown by a custom okhttp Interceptor in Kotlin Coroutines I'm using a custom Interceptor along with Retrofit client in my Android app, that throws an..
해당 플러그인과 라이브러리 동시 사용 시 ButterKnife가 제대로 동작하지 않는다. 이슈가 있으므로 확인 요망 -------------------------------------------------------------------------- (2023.3.3 수정) 기억을 더듬어보니 기존에 Java에서 사용하던 annotationProcessor를 kapt로 바꿔주어야 하는 이슈였던 걸로 기억한다. 그리고 ButterKnife는 와튼성님께서 사용하지 말아달라고 부탁하고 있으니... 쓰지말자. 내 경우 기존에 레거시 코드가 모두 ButterKnife로 되어있는 바람에 Kotlin 전환 과정에서 어쩔 수 없이 마주한 이슈이다...
stackoverflow.com/questions/33817827/android-m-app-linking-not-working-in-chrome Android M - App Linking not working in Chrome So I'm looking to implement App Links in some new apps and I've read pretty thoroughly through the dev notes, setup a server, added the file with the correct json header and built a test app. The app stackoverflow.com paul.kinlan.me/deep-app-linking-on-android-and-chrome..