mirror of
https://github.com/liberatedsystems/openCom-Companion.git
synced 2024-11-22 21:40:36 +01:00
12 lines
238 B
Python
Executable File
12 lines
238 B
Python
Executable File
__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
|