clean a little the makefiles

This commit is contained in:
Jean-Marie Mineau 2025-04-07 11:11:35 +02:00
parent 30c1abe1ea
commit 88670183eb
Signed by: histausse
GPG key ID: B66AEEDA9B645AD2
5 changed files with 62 additions and 33 deletions

View file

@ -2,6 +2,7 @@ package com.example.theseus;
import android.app.Activity;
import android.app.AlertDialog;
import android.util.Log;
import java.io.InputStream;
import java.io.OutputStream;
@ -16,6 +17,7 @@ public class Utils {
}
public static void popup(Activity ac, String title, String msg) {
Log.e("THESEUS", "POPUP, title: " + title + ", msg: " + msg);
(new AlertDialog.Builder(ac))
.setMessage(msg)
.setTitle(title)