mirror of
https://github.com/liberatedsystems/Sideband_CE.git
synced 2024-09-03 04:13:27 +02:00
12 lines
238 B
Python
12 lines
238 B
Python
|
__all__ = ("toast",)
|
||
|
|
||
|
from kivy.utils import platform
|
||
|
|
||
|
if platform == "android":
|
||
|
try:
|
||
|
from .androidtoast import toast
|
||
|
except ModuleNotFoundError:
|
||
|
from .kivytoast import toast
|
||
|
else:
|
||
|
from .kivytoast import toast
|