Save and restore cookies to/from preferences

So that the user does not have to solve a recaptcha every time he opens the app
This commit is contained in:
Stypox 2020-04-11 11:51:40 +02:00
parent b8efef7c7a
commit ee5ce0c809
No known key found for this signature in database
GPG key ID: 4BDF1B40A49FDD23
4 changed files with 27 additions and 5 deletions

View file

@ -40,8 +40,10 @@ public class DebugApp extends App {
@Override
protected Downloader getDownloader() {
return DownloaderImpl.init(new OkHttpClient.Builder()
DownloaderImpl downloader = DownloaderImpl.init(new OkHttpClient.Builder()
.addNetworkInterceptor(new StethoInterceptor()));
setCookiesToDownloader(downloader);
return downloader;
}
private void initStetho() {