导航菜单

页面标题

页面副标题

Bugko v9.2.6.0 - WebAuthenticatorIntermediateActivity.java 源代码

正在查看: Bugko v9.2.6.0 应用的 WebAuthenticatorIntermediateActivity.java JAVA 源代码文件

本页面展示 JAVA 反编译生成的源代码文件,支持语法高亮显示。 仅供安全研究与技术分析使用,严禁用于任何非法用途。请遵守相关法律法规。


package crc6468b6408a11370c2f;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import java.util.ArrayList;
import mono.android.IGCUserPeer;
import mono.android.Runtime;
import mono.android.TypeManager;

public class WebAuthenticatorIntermediateActivity extends Activity implements IGCUserPeer {
    public static final String __md_methods = "n_onCreate:(Landroid/os/Bundle;)V:GetOnCreate_Landroid_os_Bundle_Handler\nn_onResume:()V:GetOnResumeHandler\nn_onNewIntent:(Landroid/content/Intent;)V:GetOnNewIntent_Landroid_content_Intent_Handler\nn_onSaveInstanceState:(Landroid/os/Bundle;)V:GetOnSaveInstanceState_Landroid_os_Bundle_Handler\n";
    private ArrayList refList;

    private native void n_onCreate(Bundle bundle);

    private native void n_onNewIntent(Intent intent);

    private native void n_onResume();

    private native void n_onSaveInstanceState(Bundle bundle);

    static {
        Runtime.register("Microsoft.Maui.Authentication.WebAuthenticatorIntermediateActivity, Microsoft.Maui.Essentials", WebAuthenticatorIntermediateActivity.class, __md_methods);
    }

    public WebAuthenticatorIntermediateActivity() {
        if (getClass() == WebAuthenticatorIntermediateActivity.class) {
            TypeManager.Activate("Microsoft.Maui.Authentication.WebAuthenticatorIntermediateActivity, Microsoft.Maui.Essentials", "", this, new Object[0]);
        }
    }

    @Override
    public void onCreate(Bundle bundle) {
        n_onCreate(bundle);
    }

    @Override
    public void onResume() {
        n_onResume();
    }

    @Override
    public void onNewIntent(Intent intent) {
        n_onNewIntent(intent);
    }

    @Override
    public void onSaveInstanceState(Bundle bundle) {
        n_onSaveInstanceState(bundle);
    }

    public void monodroidAddReference(Object obj) {
        if (this.refList == null) {
            this.refList = new ArrayList();
        }
        this.refList.add(obj);
    }

    public void monodroidClearReferences() {
        ArrayList arrayList = this.refList;
        if (arrayList != null) {
            arrayList.clear();
        }
    }
}