正在查看: Firecracker Simulator v4.8 应用的 ProxyBillingActivityV2.java JAVA 源代码文件
本页面展示 JAVA 反编译生成的源代码文件,支持语法高亮显示。 仅供安全研究与技术分析使用,严禁用于任何非法用途。请遵守相关法律法规。
正在查看: Firecracker Simulator v4.8 应用的 ProxyBillingActivityV2.java JAVA 源代码文件
本页面展示 JAVA 反编译生成的源代码文件,支持语法高亮显示。 仅供安全研究与技术分析使用,严禁用于任何非法用途。请遵守相关法律法规。
package com.android.billingclient.api;
import android.app.PendingIntent;
import android.content.Intent;
import android.os.Bundle;
import android.os.ResultReceiver;
import androidx.activity.ComponentActivity;
import androidx.activity.result.ActivityResult;
import androidx.activity.result.ActivityResultCallback;
import androidx.activity.result.ActivityResultLauncher;
import androidx.activity.result.IntentSenderRequest;
import androidx.activity.result.contract.ActivityResultContracts;
public class ProxyBillingActivityV2 extends ComponentActivity {
private ActivityResultLauncher zza;
private ActivityResultLauncher zzb;
private ResultReceiver zzc;
private ResultReceiver zzd;
@Override
protected final void onCreate(Bundle bundle) {
super.onCreate(bundle);
this.zza = registerForActivityResult(new ActivityResultContracts.StartIntentSenderForResult(), new ActivityResultCallback() {
@Override
public final void onActivityResult(Object obj) {
ProxyBillingActivityV2.this.zza((ActivityResult) obj);
}
});
this.zzb = registerForActivityResult(new ActivityResultContracts.StartIntentSenderForResult(), new ActivityResultCallback() {
@Override
public final void onActivityResult(Object obj) {
ProxyBillingActivityV2.this.zzb((ActivityResult) obj);
}
});
if (bundle != null) {
if (bundle.containsKey("alternative_billing_only_dialog_result_receiver")) {
this.zzc = (ResultReceiver) bundle.getParcelable("alternative_billing_only_dialog_result_receiver");
return;
} else {
if (bundle.containsKey("external_payment_dialog_result_receiver")) {
this.zzd = (ResultReceiver) bundle.getParcelable("external_payment_dialog_result_receiver");
return;
}
return;
}
}
com.google.android.gms.internal.play_billing.zzb.zzj("ProxyBillingActivityV2", "Launching Play Store billing dialog");
if (getIntent().hasExtra("ALTERNATIVE_BILLING_ONLY_DIALOG_INTENT")) {
PendingIntent pendingIntent = (PendingIntent) getIntent().getParcelableExtra("ALTERNATIVE_BILLING_ONLY_DIALOG_INTENT");
this.zzc = (ResultReceiver) getIntent().getParcelableExtra("alternative_billing_only_dialog_result_receiver");
this.zza.launch(new IntentSenderRequest.Builder(pendingIntent).build());
} else if (getIntent().hasExtra("external_payment_dialog_pending_intent")) {
PendingIntent pendingIntent2 = (PendingIntent) getIntent().getParcelableExtra("external_payment_dialog_pending_intent");
this.zzd = (ResultReceiver) getIntent().getParcelableExtra("external_payment_dialog_result_receiver");
this.zzb.launch(new IntentSenderRequest.Builder(pendingIntent2).build());
}
}
@Override
protected final void onSaveInstanceState(Bundle bundle) {
super.onSaveInstanceState(bundle);
ResultReceiver resultReceiver = this.zzc;
if (resultReceiver != null) {
bundle.putParcelable("alternative_billing_only_dialog_result_receiver", resultReceiver);
}
ResultReceiver resultReceiver2 = this.zzd;
if (resultReceiver2 != null) {
bundle.putParcelable("external_payment_dialog_result_receiver", resultReceiver2);
}
}
final void zza(ActivityResult activityResult) {
Intent data = activityResult.getData();
int responseCode = com.google.android.gms.internal.play_billing.zzb.zze(data, "ProxyBillingActivityV2").getResponseCode();
ResultReceiver resultReceiver = this.zzc;
if (resultReceiver != null) {
resultReceiver.send(responseCode, data == null ? null : data.getExtras());
}
if (activityResult.getResultCode() != -1 || responseCode != 0) {
com.google.android.gms.internal.play_billing.zzb.zzk("ProxyBillingActivityV2", "Alternative billing only dialog finished with resultCode " + activityResult.getResultCode() + " and billing's responseCode: " + responseCode);
}
finish();
}
final void zzb(ActivityResult activityResult) {
Intent data = activityResult.getData();
int responseCode = com.google.android.gms.internal.play_billing.zzb.zze(data, "ProxyBillingActivityV2").getResponseCode();
ResultReceiver resultReceiver = this.zzd;
if (resultReceiver != null) {
resultReceiver.send(responseCode, data == null ? null : data.getExtras());
}
if (activityResult.getResultCode() != -1 || responseCode != 0) {
com.google.android.gms.internal.play_billing.zzb.zzk("ProxyBillingActivityV2", String.format("External offer dialog finished with resultCode: %s and billing's responseCode: %s", Integer.valueOf(activityResult.getResultCode()), Integer.valueOf(responseCode)));
}
finish();
}
}