Files
ctf/2026/insomnihack/mobile/peaky_binders/jadx_srcs/peaky.binders/WhiskeyTastingActivity.java

14 lines
413 B
Java

package com.peaky.binders;
import android.app.Activity;
import android.os.Bundle;
import android.widget.Toast;
/* JADX INFO: loaded from: classes.dex */
public class WhiskeyTastingActivity extends Activity {
@Override // android.app.Activity
protected void onCreate(Bundle bundle) {
super.onCreate(bundle);
Toast.makeText(this, "Sláinte! Enjoy your virtual whiskey.", 1).show();
}
}