29 lines
819 B
Java
29 lines
819 B
Java
package com.google.android.gms.dynamic;
|
|
|
|
import android.content.ActivityNotFoundException;
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
import android.util.Log;
|
|
import android.view.View;
|
|
|
|
/* loaded from: classes2.dex */
|
|
final class zae implements View.OnClickListener {
|
|
final Context zaa;
|
|
final Intent zab;
|
|
|
|
@Override // android.view.View.OnClickListener
|
|
public final void onClick(View view) {
|
|
try {
|
|
this.zaa.startActivity(this.zab);
|
|
} catch (ActivityNotFoundException e) {
|
|
Log.e("DeferredLifecycleHelper", "Failed to start resolution intent", e);
|
|
}
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: package-private */
|
|
public zae(Context context, Intent intent) {
|
|
this.zaa = context;
|
|
this.zab = intent;
|
|
}
|
|
}
|