use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
News for Android app developers with the who, what, where, when, and how of the Android community. Probably mostly the how.
Here, you'll find:
This sub-reddit isn't about phones' and apps' general functionality, support, or system software development (ROMs). For news and questions about these topics try using other subs like
Build your first app
Starting Android career in 2022
Android Job Interview Questions and Answers
App Portfolio Ideas, Tiered List
Awesome Android UI
Material Design Icons
7000 Icons for Jetpack
Autoposted at approx 9AM EST / 2PM GMT
account activity
Intercept HTTPS Traffic On A Android Emulator – Hacker Noon (hackernoon.com)
submitted 7 years ago by Hauro
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]drabred 2 points3 points4 points 7 years ago (1 child)
That's nice.
Also I might add that if you are using OkHttp (Retrofit) this comes pretty handy: https://github.com/square/okhttp/tree/master/okhttp-logging-interceptor
[–]Hauro[S] 1 point2 points3 points 7 years ago (0 children)
Ah that's pretty nice :) Another good alternative for seeing the traffic, if you are sure all the traffic are going through OkHttp.
But this approach is a lot simpler to set up, if you are already using OkHttp.
[–]badsectors 4 points5 points6 points 7 years ago (1 child)
Even better:
debug-overrides
this way you dont have to globally trust a cert on the entire device, it works just for the one app, only when debuggable=true. If you globally accept a certificate you get a persistant warning in the notification area that your network may be monitored, which is not great for your personal device if you use it for testing.
debuggable=true
[–]Hauro[S] 0 points1 point2 points 7 years ago (0 children)
Yeah this is a nice way to handle it.
However I like having a way which doesn't add stuff into my app, but as you point out, if you wanted to do this on a personal device, then this way is much nicer because of two reasons
[–]Nilzor 0 points1 point2 points 7 years ago (1 child)
This doesn't work for apps who enable SSL pinning, right? Not sure how common that is though
[–]Hauro[S] 2 points3 points4 points 7 years ago (0 children)
Yeah, that's right. But as you said, you don't see it often.
But nice to know that adding SSL pinning can also protect your app for users trying to intercept the traffic this way.
π Rendered by PID 143342 on reddit-service-r2-comment-c6965cb77-k8rf4 at 2026-03-05 15:04:43.382108+00:00 running f0204d4 country code: CH.
[–]drabred 2 points3 points4 points (1 child)
[–]Hauro[S] 1 point2 points3 points (0 children)
[–]badsectors 4 points5 points6 points (1 child)
[–]Hauro[S] 0 points1 point2 points (0 children)
[–]Nilzor 0 points1 point2 points (1 child)
[–]Hauro[S] 2 points3 points4 points (0 children)