Add decompiled APK source code (JADX)

- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
2026-02-18 14:52:23 -08:00
parent cc210a65ea
commit f9d20bb3fc
26991 changed files with 2541449 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
package com.helpshift.network;
import com.helpshift.network.HSRequest;
import com.helpshift.network.exception.HSRootApiException;
import com.helpshift.network.exception.NetworkException;
import com.helpshift.util.Utils;
import com.ironsource.v8;
import java.io.UnsupportedEncodingException;
import java.net.URLEncoder;
import java.util.ArrayList;
import java.util.Map;
/* loaded from: classes3.dex */
public class GETNetwork extends HSBaseNetwork implements HSNetwork {
public GETNetwork(HTTPTransport hTTPTransport, String str) {
super(hTTPTransport, str);
}
@Override // com.helpshift.network.HSBaseNetwork
public HSRequest getRequest(HSRequestData hSRequestData) {
return new HSRequest(HSRequest.Method.GET, getURL() + "?" + getQuery(hSRequestData.body), hSRequestData.headers, "", 5000);
}
public final String getQuery(Map map) {
ArrayList arrayList = new ArrayList();
for (Map.Entry entry : map.entrySet()) {
try {
arrayList.add(((String) entry.getKey()) + v8.i.b + URLEncoder.encode((String) entry.getValue(), "UTF-8"));
} catch (UnsupportedEncodingException e) {
throw HSRootApiException.wrap(e, NetworkException.UNSUPPORTED_ENCODING_EXCEPTION);
}
}
return Utils.join(v8.i.c, arrayList);
}
}