From 3fa6df58c3f0e9804dd77c571c4d4c6e553632b5 Mon Sep 17 00:00:00 2001 From: strawmanbobi Date: Sun, 19 Oct 2025 20:16:10 +0800 Subject: [PATCH] updated android-example to latest 1.5.0 --- android-example/app/libs/web-api.aar | Bin 635 -> 0 bytes .../net/irext/ircontrol/utils/ToastUtils.java | 24 ++++++++++++++++++ 2 files changed, 24 insertions(+) delete mode 100644 android-example/app/libs/web-api.aar create mode 100644 android-example/app/src/main/java/net/irext/ircontrol/utils/ToastUtils.java diff --git a/android-example/app/libs/web-api.aar b/android-example/app/libs/web-api.aar deleted file mode 100644 index be92dad2467792739a1bd2ed6e36f415002b65e9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 635 zcmWIWW@h1HVBp|j;BMaI#c9eo=_LaL!v;nM24NuWn3qzNpPAyDn3tKBT3n)6k(-k{ z!8iM`0Z-fe#((UOtKTj&xZyPCP}%*&=DS-Xe0?AB=cK+pKYw~v^n$Ag754VWdFJtp zTW{3wIa#s1Lbq(r!qJ^nUPe%Gq456%b*Z|vE9rQz~L>9s#PHB5q*{c91M zq)~dYT3fNlC~4BtW9Fi#1sBLCIvkaqWFV-oa_$G`L6N-|d?Q~TeSPNI_oLw(BJXrY zy_w#=IWIW&WSQTLZJzztOYY|MR$qU7{QgP*KhqRDm@i4)wl7fo|5mZ( + * Description: Utils of popup + *

+ * Revision log: + * 2020-10-24: created by strawmanbobi + */ +public class ToastUtils { + + public static void showToast(Context context, String text) { + int duration = Toast.LENGTH_SHORT; + + Toast toast = Toast.makeText(context, text, duration); + toast.show(); + } +}