- 증상
targetSdkVersion 29에서 Volley 사용시 정상동작하던 Volley 동작이 ErrorListener 발생함
defaultConfig {
...
targetSdkVersion 29
...
}
- 원인
- 해결책
manifest.xml에 application 항목에 android:usesCleartextTraffic="true" 추가하면 정상동작 하는것을 확인할 수 있다.
<application
...
android:usesCleartextTraffic="true"
...>
</application>
- 참고
https://noobsplanet.com/index.php?threads/solved-volley-library-not-working-on-android-9-0-pie.155/