How to copy text to the clipboard on android?

446 views
Skip to first unread message

ТН Н

unread,
Mar 9, 2021, 11:31:20 AM3/9/21
to Kivy users support
I used the pyperclip library for this purpose, everything works fine on a PC, but it crashes on android. Are there other ways that will work?

Pranav Balaji Pooruli

unread,
Mar 9, 2021, 11:34:56 AM3/9/21
to kivy-...@googlegroups.com
Use kivy.core.clipboard.Clipboard.

from kivy.app import App
from kivy.core.clipboard import Clipboard as Cb

class MyApp(App):
        def build(self):
                Cb.copy('Hey')
                return

if __name__ == '__main__':
        MyApp().run()
On Mar 9, 2021, at 10:31 AM, ТН Н <hatsune...@gmail.com> wrote:

I used the pyperclip library for this purpose, everything works fine on a PC, but it crashes on android. Are there other ways that will work?

--
You received this message because you are subscribed to the Google Groups "Kivy users support" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kivy-users+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kivy-users/5ad164d7-08de-4e8e-afb8-fbfb0a35ee15o%40googlegroups.com.

ТН Н

unread,
Mar 9, 2021, 11:39:11 AM3/9/21
to Kivy users support
Thank you very much.

вторник, 9 марта 2021 г., 19:34:56 UTC+3 пользователь Pranav Balaji Pooruli написал:
Use kivy.core.clipboard.Clipboard.

from kivy.app import App
from kivy.core.clipboard import Clipboard as Cb

class MyApp(App):
        def build(self):
                Cb.copy('Hey')
                return

if __name__ == '__main__':
        MyApp().run()
On Mar 9, 2021, at 10:31 AM, ТН Н <hatsune...@gmail.com> wrote:

I used the pyperclip library for this purpose, everything works fine on a PC, but it crashes on android. Are there other ways that will work?

--
You received this message because you are subscribed to the Google Groups "Kivy users support" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kivy-...@googlegroups.com.

Pranav Balaji Pooruli

unread,
Mar 9, 2021, 11:39:48 AM3/9/21
to kivy-...@googlegroups.com
My pleasure.

To unsubscribe from this group and stop receiving emails from it, send an email to kivy-users+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kivy-users/342b9f5d-9630-458a-88e5-de2bd9615d52o%40googlegroups.com.

Reply all
Reply to author
Forward
0 new messages