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,60 @@
package com.ironsource;
import android.annotation.SuppressLint;
import android.content.Context;
import android.view.View;
import android.webkit.WebSettings;
import android.webkit.WebView;
import android.widget.FrameLayout;
import com.ironsource.sdk.utils.Logger;
/* loaded from: classes2.dex */
public class yu {
private static String a = "yu";
public static FrameLayout a(Context context, View view) {
FrameLayout.LayoutParams layoutParams = new FrameLayout.LayoutParams(-1, -1);
FrameLayout frameLayout = new FrameLayout(context);
FrameLayout frameLayout2 = new FrameLayout(context);
frameLayout2.setLayoutParams(new FrameLayout.LayoutParams(-1, -1));
frameLayout2.setVisibility(8);
FrameLayout frameLayout3 = new FrameLayout(context);
frameLayout3.setLayoutParams(new FrameLayout.LayoutParams(-1, -1));
frameLayout3.addView(view);
frameLayout.addView(frameLayout2, layoutParams);
frameLayout.addView(frameLayout3);
return frameLayout;
}
private static void a(WebSettings webSettings) {
webSettings.setDisplayZoomControls(false);
}
@SuppressLint({"SetJavaScriptEnabled"})
public static void a(WebView webView) {
WebSettings settings = webView.getSettings();
settings.setLoadWithOverviewMode(true);
settings.setUseWideViewPort(true);
webView.setVerticalScrollBarEnabled(false);
webView.setHorizontalScrollBarEnabled(false);
settings.setAllowFileAccess(true);
settings.setBuiltInZoomControls(false);
settings.setJavaScriptEnabled(true);
settings.setSupportMultipleWindows(true);
settings.setJavaScriptCanOpenWindowsAutomatically(true);
settings.setGeolocationEnabled(true);
settings.setDomStorageEnabled(true);
try {
a(settings);
b(settings);
} catch (Throwable th) {
i9.d().a(th);
Logger.e(a, "setWebSettings - " + th.toString());
}
}
@SuppressLint({"NewApi"})
private static void b(WebSettings webSettings) {
webSettings.setMediaPlaybackRequiresUserGesture(false);
}
}